linux服务器内无法访问其他站点的检查处理方法
时间:2016-01-03 01:51 来源:linux.it.net.cn 作者:IT
1.ifconfig检查网卡信息是否正常
ifconfig 命令会有3个网卡,分别是eth0-内网网卡,eth1-公网网卡,lo-回环网卡
2.路由表是否正常
3.能否正常ping内网网关
route -n 可以看到Gateway 网关。
4./etc/resolv.conf中是否指定nameserver
cat /etc/resolv.conf 查看是否指定了nameserver
5.nscd进程是否正常
ps aux |grep nscd 查看是否有/usr/sbin/nscd
6.iptables是否限制对外网80、53端口的访问
iptables -nvL 检查OUTPUT是否限制。
(责任编辑:IT)
1.ifconfig检查网卡信息是否正常 ifconfig 命令会有3个网卡,分别是eth0-内网网卡,eth1-公网网卡,lo-回环网卡 2.路由表是否正常 3.能否正常ping内网网关 route -n 可以看到Gateway 网关。 4./etc/resolv.conf中是否指定nameserver cat /etc/resolv.conf 查看是否指定了nameserver 5.nscd进程是否正常 ps aux |grep nscd 查看是否有/usr/sbin/nscd 6.iptables是否限制对外网80、53端口的访问 iptables -nvL 检查OUTPUT是否限制。 (责任编辑:IT) |