對於一個剛建立的虛擬機,上不了網該如何解決呢?網絡
首先檢查本身的網卡配置是否有誤編輯器
cd /etc/sysconfig/network-scripts/網卡名
(1)DHCP獲取ip的話把ONBOOT設爲yesspa
BOOTPROTO=dhcp
ONBOOT=yes
(2)static手動獲取就要仔細檢查了(我這裏的是nat模式)rest
BOOTPROTO=static IPADDR=192.168.192.120 #自定義,根據你的nat網段來定義 NETMASK=255.255.255.0 GATEWAY=192.168.192.2 DNS1=114.114.114.114 DNS2=8.8.8.8 ONBOOT=yes
補充:<1>關於三種上網模式請自行百度code
<2>nat模式在這裏網關必定是2,千萬不要寫成1了,寫成1會ping不通外網。橋接模式下是1blog
(3)重啓網卡ip
systemctl restart network
(4)ping檢查虛擬機
ping baidu.com -c 4 64 bytes from 39.156.69.79 (39.156.69.79): icmp_seq=1 ttl=128 time=10.3 ms 64 bytes from 39.156.69.79 (39.156.69.79): icmp_seq=2 ttl=128 time=81.3 ms 64 bytes from 39.156.69.79 (39.156.69.79): icmp_seq=3 ttl=128 time=23.2 ms 64 bytes from 39.156.69.79 (39.156.69.79): icmp_seq=4 ttl=128 time=29.0 ms --- baidu.com ping statistics --- 4 packets transmitted, 4 received, 0% packet loss, time 3042ms rtt min/avg/max/mdev = 10.347/36.006/81.318/27.025 ms
(5)若是配置完網卡仍是重啓不了it
點擊 編輯>>虛擬網絡編輯器class
<1>刪除以前的信息或者還原默認設置
<2>從新新建一個以太網鏈接,地址設置爲自動獲取,使用新配置的鏈接去聯網
本人對此認識比較淺薄,還望各位大佬補充。