标签:
结论是tcpdump,用tcpdump抓包试试就知道了。
// 将所有访问8080端口的包丢弃 iptables -A INPUT -s 0.0.0.0/0.0.0.0 -p tcp --dport 8008 -j DROP // 查看iptables的策略 iptables -L -n // 结果 Chain INPUT (policy ACCEPT) target prot opt source destination DROP tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:8008 Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination
这时用浏览器访问 182.92.108.226:8008/index.php,显示:
这时间用tcpdump抓包,如果能抓到8080的包,说明tcpdump更靠近底层。
tcpdump port 8008 -s 0 -i eth1 -w temp&
结果如下:
抓到的请求的包[SYN],服务器没有一点回复。
到这里结论就很清晰了。
标签:
原文地址:http://www.cnblogs.com/hxdoit/p/4290967.html