虚拟机 centos7 不能查不到ip不能上网的处理办法

虚拟机 centos7 查不到ip以及不能上网的解决办法

1、问题
(1)查询ip 发现 ens33 没有 inet 这个属性,那么就没法通过IP地址连接虚拟机

ip addr (使用ifconfig 可能找不到命令)

虚拟机 centos7 不能查不到ip不能上网的处理办法_第1张图片
(2)因为没有ip也会导致无法使用主机网络因此 会报
could not retrieve mirrorlist http:xxx 错误!
2、解决
修改ens33网卡的配置:

vi /etc/sysconfig/network-scripts/ifcfg-ens33
虚拟机 centos7 不能查不到ip不能上网的处理办法_第2张图片

配置中将默认不启动网卡的no修改为yes
ONBOOT=no 改为 ONBOOT=yes
然后重启网络服务: sudo service network restart
ip addr 测试是否有inet项
虚拟机 centos7 不能查不到ip不能上网的处理办法_第3张图片

完!

你可能感兴趣的:(linux)