回答:
iptables
pingがlocalhostに到達しないようにするルールがあるかもしれません(これはiptablesで完全に可能です)。
以下はすべてのiptables
ルールをクリアします。iptables
はLinuxでファイアウォールを実装するために使用されているので、ファイアウォールを効果的に無効にするので、これは慎重に行ってください。
iptables -P INPUT ACCEPT
iptables -P OUTPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -F
iptables -X
これは、ルートテーブルがめちゃくちゃになっている場合にも起こります。route
上記がどこにも通じない場合の出力を教えてください。
他に考えられる唯一のことはlo
、ローカルホストの「仮想ネットワークアダプター」が、別のアダプターとの奇妙なブリッジ構成に関与しているということです。しかし、これは非常にまれです(ただしbrctl
、チェックに使用できます)。
lo:4 Link encap:Local Loopback inet addr:92.xxx.xxx.xxx Mask:255.255.255.255 UP LOOPBACK RUNNING MTU:16436 Metric:1
。brctl
見つかりません。
FATAL: Could not load /lib/modules/2.6.34-vs2.3.0.36.30.4.pre8/modules.dep: No such file or directory iptables v1.4.2: can't initialize iptables table filter': Permission denied (you must be root)