1. 程式人生 > >centos7設定靜態IP連線外網

centos7設定靜態IP連線外網

ISO映象的centos7系統剛裝好,網路可能不通,所以要檢查網路。
ping 外網檢測

# ping www.baidu.com

如果未能ping通,請依次檢測ip,route

# vi /etc/sysconfig/network-script/ifcfg-eth0

可以先將dhcp動態分配IP改為靜態IP

#cgls 
#BOOTPROTO=dhcp
BOOTPROTO=static
IPADDR=172.16.5.133
GATEWAY=172.16.1.1
NETMASK=255.255.0.0
ONBOOT=yes

重啟網絡卡使其生效

# service network restart

檢查路由

# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         172.16.1.1      0.0.0.0         UG    100    0        0 eth0
169.254.169.254 172.16.88.100   255.255.255.255 UGH   100    0        0 eth0
172.16.0.0      0.0.0.0         255.255.0.0     U     100
0 0 eth0

如果你缺失第一個路由,是肯定無法ping通外網的這裡寫程式碼片
新增dns

# vim /etc/resolv.conf
nameserver 114.114.114.114

新增路由

# route add default gw 172.16.1.1

試一下ping百度

# ping www.baidu.com