1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| [root@iZ8vba21wy1jbsrm04fdrbZ ~]# route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 172.17.111.253 0.0.0.0 UG 0 0 0 eth0 10.244.0.0 10.244.0.0 255.255.255.0 UG 0 0 0 flannel.1 169.254.0.0 0.0.0.0 255.255.0.0 U 1002 0 0 eth0 172.17.96.0 0.0.0.0 255.255.240.0 U 0 0 0 eth0 172.18.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0 [root@iZ8vba21wy1jbsrm04fdrbZ ~]# arp -a | grep 172.17.111.253 gateway (172.17.111.253) at ee:ff:ff:ff:ff:ff [ether] on eth0 [root@iZ8vba21wy1jbsrm04fdrbZ ~]# tcpdump -netvv -i eth0 icmp tcpdump: listening on eth0, link-type EN10MB (Ethernet), capture size 262144 bytes 00:16:3e:09:4f:29 > ee:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 98: (tos 0x0, ttl 64, id 37748, offset 0, flags [DF], proto ICMP (1), length 84) 172.17.99.209 > 110.242.68.4: ICMP echo request, id 27090, seq 1, length 64 ee:ff:ff:ff:ff:ff > 00:16:3e:09:4f:29, ethertype IPv4 (0x0800), length 98: (tos 0x14, ttl 50, id 37748, offset 0, flags [DF], proto ICMP (1), length 84) 110.242.68.4 > 172.17.99.209: ICMP echo reply, id 27090, seq 1, length 64
|