linux 网络troubleshooting
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 网络troubleshooting相关的知识,希望对你有一定的参考价值。
1)检查物理层 physical layer
ip link is etho , 看网卡stat是否up, ip link set eth0 up来up网卡
或者ifconfig eth0是否能获取到ip
2) 检查数据链路层 data link layer
arp -n 是否学到了mac
3)网络层 network layer
ping
route -n 是否学到了路由
traceroute 或者 mtr -n 8.8.8.8
netstat -anl 是否监听IP 或者ss -ant
dig @dns server destination ip
#如果禁ping,可以用telnet测试,ping是icmp协议,telnet是tcp ip协议
4) 传输层 tansport layer
netstat -anl 是否port在监听
iptable -L 是否port被drop或者reject掉了 或者ss -l
以上是关于linux 网络troubleshooting的主要内容,如果未能解决你的问题,请参考以下文章