物理主机1:centos8.4 192.168.0.99
物理主机2:windows10 192.168.0.106 vmware NAT:172.16.1.1
虚拟机1:ubuntu20.04 NAT:172.16.1.109 Bridge:192.168.0.109 虚拟机2:ubuntu20.04 NAT:172.16.1.99
目标:让虚拟机2能ping通物理主机1
此时虚拟机2可以ping通 172.16.1.1 和 172.16.1.109
为虚拟机2添加默认网关
# route add default gw 172.16.1.109 # route -n Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 172.16.1.109 0.0.0.0 UG 0 0 0 ens33
此时虚拟机2可以ping通 192.168.0.109 但无法ping通物理主机1
为物理主机1添加默认网关
# route add default gw 192.168.0.109 # route -n Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 192.168.0.109 0.0.0.0 UG 0 0 0 enp3s0
此时物理主机1可以ping通 172.16.1.109 但无法ping通虚拟机2
在虚拟机1上开启数据包转发
# echo 1 > /proc/sys/net/ipv4/ip_forward
# route -n
Destination Gateway Genmask Flags Metric Ref Use Iface
172.16.1.0 0.0.0.0 255.255.255.0 U 103 0 0 ens38
192.168.0.0 0.0.0.0 255.255.255.0 U 102 0 0 ens3
此时,物理主机1和虚拟机2可以互相ping通
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/278005.html