以下の物理サーバ上でのネットワーク環境において、Server1からServer2へのPingが通りません。
tcpdumpで調べたところServer2にはICMPリクエストが届いているようなのですが、リプライを返してくれません。
原因が分からず本当に困っています。ご教授いただけないでしょうか?よろしくお願い致します。
Server1,Server2のOSはUbuntu18.04.3を利用しています。
|Server1(eth0)| <--LANケーブル接続--> |(eth1)Server2|
eth0:(IP:10.0.1.1/24 , Mac:a0:36:9f:a0:ec:ad)
eth1:(IP:10.0.1.2/24 , Mac:90:e2:ba:00:87:62)
<Server1の情報>
・Pingコマンドを実行した際の出力
root@server1:/home/tsubasa# ping -I 10.0.1.1 10.0.1.2
PING 10.0.1.2 (10.0.1.2) from 10.0.1.1 : 56(84) bytes of data.
・ARPテーブル
Address HWtype HWaddress Flags Mask Iface
_gateway ether 00:09:0f:09:14:0a C eno1
10.31.22.17 ether dc:fe:07:d2:a3:fd C eno1
10.31.22.72 ether e2:c8:80:17:63:9e C eno1
10.31.22.34 ether 70:f3:95:00:6e:f9 C eno1
10.31.22.35 ether 70:f3:95:00:64:56 C eno1
10.31.22.89 ether dc:fe:07:d2:a3:06 C eno1
10.0.1.2 ether 90:e2:ba:00:87:62 CM eth0
10.0.1.4 (incomplete) eth0
<Server2の情報>
・tcpdumpコマンドを実行した際の出力 (修正)
root@server2:/home/tsubasa# tcpdump -i any icmp
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on any, link-type LINUX_SLL (Linux cooked), capture size 262144 bytes
12:07:27.170769 IP 10.0.1.1 > server2: ICMP echo request, id 18611, seq 137, length 64
12:07:28.194847 IP 10.0.1.1 > server2: ICMP echo request, id 18611, seq 138, length 64
12:07:29.218772 IP 10.0.1.1 > server2: ICMP echo request, id 18611, seq 139, length 64
・ip routeコマンドを実行した際の出力 (追記)
root@server2:/home/tsubasa# ip route
default via 10.31.22.1 dev eno1 proto static
10.0.1.0/24 dev eth1 proto kernel scope link src 10.0.1.2
10.31.22.0/24 dev eno1 proto kernel scope link src 10.31.22.34
・ファイアウォール設定 (追記)
tsubasa@server2:~/tutorials/exercises/basic/solution$ sudo iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
回答1件
あなたの回答
tips
プレビュー