如何测试IP表规则(Linux Ubuntu12.04)


3

我想问一下如何测试IP表规则。例如,我有一个端口号,我想确保它接受所有数据包。我该怎么做?

我输入后 iptables -L 我看到规则已经添加,但我需要一个实用的证明。 我有办法怎样做吗?

我无法在线找到有关如何执行此操作的任何资源,而不是检查IP表规则是否存在。

我想测试的规则是:

sudo iptables –A INPUT –i eth0 –j ACCEPT

Answers:



0

如果您的Ubuntu的IP在Internet上公开,您可以使用 这个工具 ping您要测试的端口。


用ping命令测试它是否足够?
Alex

要测试传入的TCP数据包,是的。
Desmond Hume

UDP数据包怎么样?如果我测试它也是怎么回事 nmap -p <portNumber> <interface> 我得到了端口被过滤,是否认为端口接受了打包?
Alex
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.