kvm重置密码后无法在局域网ping通

  1. kvm虚拟机重置密码后,宿主机和虚拟机网络没问题,可以使用virsh console VM1或者vnc连接上去。虚拟机之间可以ping通,但是办公室主机无法ping通上述虚拟机

  2. route看了下有问题的虚拟机路由:
    [root@s2n2 ~]# route
    Kernel IP routing table
    Destination Gateway Genmask Flags Metric Ref Use Iface
    default bogon 0.0.0.0 UG 100 0 0 eth0
    10.10.10.0 0.0.0.0 255.255.255.0 U 100 0 0 eth2
    192.168.110.0 0.0.0.0 255.255.255.0 U 100 0 0 eth1
    192.168.121.0 0.0.0.0 255.255.255.0 U 100 0 0 eth0

  3. 再看下没问题的虚拟机的路由:
    [root@s3n3 ~]# route
    Kernel IP routing table
    Destination Gateway Genmask Flags Metric Ref Use Iface
    default bogon 0.0.0.0 UG 0 0 0 eth2
    default bogon 0.0.0.0 UG 100 0 0 eth0
    10.10.10.0 0.0.0.0 255.255.255.0 U 100 0 0 eth2
    192.168.110.0 0.0.0.0 255.255.255.0 U 100 0 0 eth1
    192.168.121.0 0.0.0.0 255.255.255.0 U 100 0 0 eth0

  4. 发现要添加路由了,但是怎么写都不对:
    route add default gw 0.0.0.0 UG eth0

  5. 于是转而使用 ip route show|column -t 再次对比路由

[root@s3n3 ~]# ip route show|column -t
default via 10.10.10.254 dev eth2
default via 192.168.121.1 dev eth0 proto static metric 100
10.10.10.0/24 dev eth2 proto kernel scope link src 10.10.10.30 metric 100
192.168.110.0/24 dev eth1 proto kernel scope link src 192.168.110.30 metric 100
192.168.121.0/24 dev eth0 proto kernel scope link src 192.168.121.73 metric 100

  1. 然后使用 ip route add default via 10.10.10.254 dev eth2
    添加完路由,可以访问了。
    ip route add 后面的内容就是上面对比出来的。

你可能感兴趣的:(kvm重置密码后无法在局域网ping通)