CentOS7最小化安裝配置

2021-10-20 21:33:02 字數 1312 閱讀 1725

1.靜態ip配置

[root@localhost ~]# vim /etc/sysconfig/network-scripts/ifcfg-ens33

bootproto=static

defroute=yes

ipaddr=192.168.80.132

netmask=255.255.255.0

gateway=192.168.80.2

dns1=8.8.8.8

dns2=114.114.114.114

name=ens33

uuid=ead176c8-6568-47d0-b4e6-38d719a9b7c7

device=ens33

onboot=yes

其實不想配置靜態ip也沒有關係,不過考慮到動態ip容易發生改變,所以配置一下也行,也不花費多少時間。

[root@localhost ~]# ifdown ens33

[root@localhost ~]# ifup ens33

重啟後生效,但是這個時候還沒有ifconfig命令,所以需要用ip addr。

如果不想配置靜態直接用ip addr檢視動態ip即可。

安裝ifconfig,vim,上傳工具

[root@localhost ~]# yum -y install net-tools  vim  lrzsz
[root@localhost ~]# vim /etc/ssh/sshd_config

77 78 # gssapi options

79 gssapiauthentication yes

80 gssapicleanupcredentials no

81 #gssapistrictacceptorcheck yes

82 #gssapikeyexchange no

114 #showpatchlevel no

115 usedns no

116 #pidfile /var/run/sshd.pid

主要是修改80行和115行,yes改為no。set nu 可以檢視行數。

CentOS 7最小化安裝配置

檢視網路狀態,因為ifconfig沒有安裝,所以使用如下命令 ip addr進入目錄 cd etc sysconfig network scripts編輯網絡卡檔案 vi ifcfg eno16777736修改或增加如下內容 bootproto static dhcp改為static 修改 onbo...

CentOS7 最小化安裝完配置

防火牆 yum install y net tools systemctl stop firewalld systemctl disable firewalld.service yum install y iptables services systemctl restart iptables.se...

Centos 7最小化安裝後配置

關閉selinux vi etc sysconfig selinux selinux disabled wq配置網絡卡 最小化安裝後ifconfig無法使用 該配置的前提是採用 nat模式 檢查網絡卡 ip addr 或者 更新yum yum y update聯網後安裝ifconfig yum y ...