我更改了 INPUT 链的策略,添加了以下命令。
iptables -P INPUT DROP
在我插入下一个规则以允许来自网络端口 80 和 443 的输入数据包后,但端口仍然关闭(例如,我不能使用 Web 浏览器)。
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -j ACCEPT
输出iptables -L
:
Chain INPUT (policy DROP)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:http
ACCEPT tcp -- anywhere anywhere tcp dpt:https
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
如何允许来自 HTTP 和 HTTPS 端口的网络流量?