我的虚拟机 (centos 7) 连接了 2 个网卡,第一个是 NAT,第二个是仅主机适配器。 Hostonly 适配器已成为默认网关,并且限制我的 Internet 访问,我想让我的 NAT(第一个 enp0s3)成为默认网关。我已经尝试过此操作,但重新启动后主机仍仅成为默认网关。
# route del default gw 192.168.43.1
# route add default gw 10.0.2.2 metric 100
# route add default gw 192.168.43.1 metric 101
当前场景。
[root@node1 ~]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.43.1 0.0.0.0 UG 100 0 0 enp0s8
0.0.0.0 10.0.2.2 0.0.0.0 UG 101 0 0 enp0s3
10.0.2.0 0.0.0.0 255.255.255.0 U 100 0 0 enp0s3
192.168.43.0 0.0.0.0 255.255.255.0 U 100 0 0 enp0s8