修改虛擬機器中的centos 7系統為固定ip的配置檔案:
#cd /etc/sysconfig/network-scripts/
#vi ifcfg-eno16777736
#將ipv6…..協議都注釋;
bootproto=static #開機協議,有dhcp及static;
onboot=yes #設定為開機啟動;
ipaddr=192.168.2.2 #你想要設定的固定ip,理論上192.168.2.2-255之間都可以,請自行驗證;
dns1=192.168.2.1 #這個是國內的dns位址,跟閘道器一樣即可;
netmask=255.255.255.0 #子網掩碼,不需要修改;
gateway=192.168.2.1 #閘道器,這裡是你在「2.配置虛擬機器的nat模式具體位址引數」中的(2)選擇vmnet8--取消勾選使用本地dhcp--設定子網ip--閘道器ip設定。
修改主機名
1./etc/hostname
s201
2./etc/hosts
127.0.0.1 localhost
192.168.231.201 s201
192.168.231.202 s202
192.168.231.203 s203
192.168.231.204 s204
service network restart
6.遠端終端連線
(1)遇到問題,若連線失敗是因為centos 7的防火牆埠沒有開啟,比如開啟80,3306埠,最後一定要重啟防火牆;
#檢視防火牆狀態
systemctl status firewalld
#開啟80埠
firewall-cmd --zone=public --add-port=80/tcp --permanent
#開啟3306埠
firewall-cmd --zone=public --add-port=3306/tcp --permanent
#重啟防火牆:
firewall-cmd --reload
centos 配置固定ip
中小 本文介紹了centos網路配置的方法,centos網路配置主要包括dns 閘道器 ip位址,主要是配置resolv.conf network ifcfg eth0這些網路配置檔案,需要的朋友可以參考下 centos網路配置例項 1,配置dns vi etc resolv.conf 加入 複製 ...
centos 配置ip dns 固定的ip
幫助自己記憶一下,免得忘了 一 centos 修改ip位址 修改對應網絡卡的ip位址的配置檔案 vi etc sysconfig network scripts ifcfg eth0 修改以下內容 device eth0 描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 boo...
Centos設定固定ip
ifconfig檢視網路設定 vim開啟 etc sysconfig network scripts ifcfg eth0 device eth0描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 bootproto static設定網絡卡獲得ip位址的方式,可能的選項為stat...