글쎄, 이것이 나를 미치게 만든다.
저는 RHEL 7 머신을 가지고 있으며 며칠 전에 해당 대상 IP에 도달할 수 있었습니다. LAN 이웃은 원격 호스트를 볼 수 있으므로 네트워크 간 라우팅이 좋습니다. IP 라우팅 테이블, 경로 캐시 및 규칙을 검토하면 문제를 일으킬 수 있는 특이한 사항이 없습니다.
default via 172.31.16.1 dev eth0 proto static metric 100
172.31.16.0/20 dev eth0 proto kernel scope link src 172.31.16.32 metric 100
# ip rule show
0: from all lookup local
32766: from all lookup main
32767: from all lookup default
# ip route get 41.215.xxx.1
41.215.xxx.1 via 172.31.16.1 dev eth0 src 172.31.16.32
cache
ICMP는 상자에서 활성화되어 있으며 다른 IP 주소를 ping할 수 있습니다.
PING 41.215.xxx.13 (41.215.xxx.13) 56(84) bytes of data.
64 bytes from 41.215.xxx.13: icmp_seq=1 ttl=39 time=130 ms
64 bytes from 41.215.xxx.13: icmp_seq=2 ttl=39 time=130 ms
64 bytes from 41.215.xxx.13: icmp_seq=3 ttl=39 time=130 ms
64 bytes from 41.215.xxx.13: icmp_seq=4 ttl=39 time=130 ms
64 bytes from 41.215.xxx.13: icmp_seq=5 ttl=39 time=130 ms
--- 41.215.xxx.13 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 4004ms
rtt min/avg/max/mdev = 130.145/130.245/130.399/0.406 ms
# ping 41.215.xxx.1 -c 5
PING 41.215.xxx.1 (41.215.xxx.1) 56(84) bytes of data.
--- 41.215.xxx.1 ping statistics ---
5 packets transmitted, 0 received, 100% packet loss, time 3999ms
따라서 위 그림과 같이 이 목적지까지의 패킷 손실률은 100%가 됩니다.
traceroute to 41.215.xxx.1 (41.215.xxx.1), 30 hops max, 60 byte packets
1 * * *
2 * * *
3 * * *
4 * * *
5 * * *
6 * * *
7 * * *
8 * * *
9 * * *
10 * * *
11 * * *
12 * * *
13 * * *
14 * * *
15 * * *
16 * * *
17 * * *
18 * * *
19 * * *
20 * * *
21 * * *
22 * * *
23 * * *
24 * * *
25 * * *
26 * * *
27 * * *
28 * * *
29 * * *
30 * * *
tshark 캡처는 대상 IP 주소로 향하는 정보를 캡처하지 않습니다. 패킷은 생성되지도 않았거나 상자의 유일한 인터페이스를 통과하지도 않은 것 같습니다. 예, 미친 소리처럼 들릴 수도 있습니다 :)
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 9001
inet 172.31.16.32 netmask 255.255.240.0 broadcast 172.31.31.255
ether 06:b1:d4:07:4e:14 txqueuelen 1000 (Ethernet)
RX packets 364293720 bytes 168772961614 (157.1 GiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 473934683 bytes 95572128708 (89.0 GiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
어떤 조언이라도 대단히 감사하겠습니다.