通過命令列修改ip位址
修改/etc/sysconfig/network-scripts/ifcfg-eth0檔案,如果有多張網絡卡,則修改相應的網絡卡
device=eth5
#網絡卡對應的裝置別名
type=ethernet
onboot=yes
#系統啟動時是否啟用此裝置
nm_controlled=yes
bootproto=static
#網絡卡獲得ip位址的方式(預設為dhcp,表示自動獲取)
ipaddr=192.168.97.185
#ip位址
netmask=255.255.252.0
#子網掩碼
gateway=192.168.96.1
dns1=8.8.8.8
重啟網路服務
[root@oracle network-scripts]
# service network restart
shutting down inte***ce eth5: device state: 3 (disconnected)
[ ok ]
shutting down loopback inte***ce: [ ok ]
bringing up loopback inte***ce: [ ok ]
bringing up inte***ce eth5: active connection state: activated
active connection path: /org/freedesktop/networkmanager/activeconnection/1[ ok ]
[root@oracle network-scripts]
#
系統就可以正常的上網了
通過圖形化介面修改ip位址
CentOS Linux下設定IP位址
centos linux下設定ip位址 1.3 修改dns 這個時候就可以上網了,上網的ip位址為192.168.100.100,閘道器位址為192.168.100.1。但是這樣的設定是臨時性的,一旦重啟網絡卡或者重啟伺服器,除了1.3的操作其他均會被還原,這樣的方式只適合臨時ip修改,想要永久性修...
CentOS Linux下設定IP位址
1 臨時修改 1.1 修改ip位址 ifconfig eth0 192.168.100.100 1.2 修改閘道器位址 route add default gw 192.168.100.1 dev eth0 1.3 修改dns echo nameserver 8.8.8.8 etc resolv.c...
CentOS Linux下設定IP位址
centos linux下設定ip位址 ifconfig eth0 192.168.100.100 route add default gw 192.168.100.1 dev eth0 echo nameserver 8.8.8.8 etc resolv.conf這個時候就可以上網了,上網的ip位...