在我的 Debian 8 上 `uname -a' 给出:
Linux uname 3.16.0-4-amd64 #1 SMP Debian 3.16.36-1+deb8u1 (2016-09-03) x86_64 GNU/Linux
尝试过
route -n
给出:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 10.0.0.2 0.0.0.0 UG 1024 0 0 eth0
10.0.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 eth0
其他网络功能都还好。
我怎样才能去ping 127.0.0.1
上班?我怀疑这是以下!lo
规则,iptables
但我不知道如何修复它并使更改持久。
3591 2197K ACCEPT all -- !lo any anywhere anywhere
该行显示为 -A INPUT ! -i lo -j ACCEPT
:/etc/iptables.up.rules
我要删除吗!
?
答案1
不,杰西默认没有阻止。
ping -c 4 127.0.0.1
PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data.
64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.050 ms
64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.056 ms
64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.054 ms
64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.044 ms
--- 127.0.0.1 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 2999ms
rtt min/avg/max/mdev = 0.044/0.051/0.056/0.004 ms
显示iptables -L
和 cat /etc/hosts
cat /etc/hostname
答案2
Debian 8 似乎拒绝在我的安装中iptables
进行环回访问。localhost
许多程序都需要它才能正常运行,例如调试器,所以我不明白它是如何在我的设置中禁用的。
修复如下:
根编辑/etc/iptables.up.rules
并通过删除刘海更改-A INPUT ! -i lo -j ACCEPT
为!-A INPUT -i lo -j ACCEPT