ping打つとIcmp checksum is wrong
カテゴリ[
Linux Unix
]
とあるPCでpingを打つと、特定のドメイン、IPで
Icmp checksum is wrong
と出る現象が発生した。
以下で直ったのでメモ。
あくまでこういう場合の対処法の一つですが。
まずはネットワーク設定がおかしくないか調べるのが先だが、特に問題がない場合は
routeコマンドで変なIPが無いか調べる。
# su -l
した後
# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
***.***.***.*** * ***.***.***.*** U 0 0 0 eth0
192.168.1.0 * 255.255.255.0 U 0 0 0 eth1
default ***.***.***.*** 0.0.0.0 UG 0 0 0 eth0
この結果に変なやつがいたら以下のコマンドで削除する。
# route del -net xxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx
参考URL
http://kapi.jp/kapi_blog/262
2009年12月21日
関連カテゴリ Linux Unix