双网卡类型
ens33 仅主机
ens34 NAT
问题
window配置一切正常,虚拟机不能上网
解决
方案1:路由引起
查看路由
route
结果如下:
[root@data-repository ~]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default gateway 0.0.0.0 UG 100 0 0 ens33
default gateway 0.0.0.0 UG 101 0 0 ens34
192.168.1.0 0.0.0.0 255.255.255.0 U 101 0 0 ens34
192.168.8.0 0.0.0.0 255.255.255.0 U 100 0 0 ens33
192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
可以看到default有两个,删除不能上网的那个
route del -net 0.0.0.0 ens33
再次查看
[root@data-repository ~]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default gateway 0.0.0.0 UG 101 0 0 ens34
192.168.1.0 0.0.0.0 255.255.255.0 U 101 0 0 ens34
192.168.8.0 0.0.0.0 255.255.255.0 U 100 0 0 ens33
192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
ping 百度即可通。
重启了之后又不能上外网了,可以吧这个默认网关加到开机启动项里面去:
echo -e 'route del -net 0.0.0.0 ens33 2>/dev/null' >>/etc/rc.d/rc.local
授权
chmod +x /etc/rc.d/rc.local