修改ip位址和閘道器是很常見的操作,在做相關實驗的時候,如果沒有設定好,會帶來很多不必要的麻煩..
1. 修改ip位址
vi /etc/sysconfig/network-scripts/ifcfg-eth0
device=eth0
bootproto=none
broadcast=192.168.1.255
ipaddr=192.168.1.33
netmask=255.255.255.0
network=192.168.1.0
onboot=yes
userctl=no
peerdns=no
type=ethernet
如果有2個網絡卡, 第二個的相關資訊就儲存在ifcfg-eth1檔案中。
vi /etc/sysconfig/network-scripts/ifcfg-eth1
device=eth1
onboot=yes
bootproto=none
ipaddr=192.168.2.34
netmask=255.255.255.0
userctl=no
peerdns=no
type=ethernet
network=192.168.2.0
broadcast=192.168.2.255
2. 修改閘道器
vi /etc/sysconfig/network
networking=yes
hostname=aaron
gateway=192.168.1.1
3. 重新啟動網路配置: 修改ip和閘道器後要重啟網路服務後才能生效.
/etc/init.d/network restart
Linux 修改 IP位址 和 閘道器
1.修改ip位址 vi etc sysconfig network scripts ifcfg eth0 device eth0 bootproto none broadcast 192.168.1.255 ipaddr 192.168.1.33 netmask 255.255.255.0 netw...
CentOS 修改IP位址, DNS, 閘道器
一 centos 修改ip位址 修改對應網絡卡的ip位址的配置檔案 vi etc sysconfig network scripts ifcfg eth0 修改以下內容 device eth0 描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 bootproto static ...
CentOS 修改IP位址, DNS, 閘道器
一 centos 修改ip位址 修改對應網絡卡的ip位址的配置檔案 vi etc sysconfig network scripts ifcfg eth0 修改以下內容 device eth0 描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 bootproto static ...