我想在 iptables 中允许本地主机流量,因此我添加了规则
iptables -A INPUT -i lo -j ACCEPT
当我跑步时iptables -L它告诉我这条规则被翻译成了
ACCEPT all -- anywhere anywhere
这让我很困惑。这难道不意味着 iptables 允许所有 INPUT 流量吗?请帮忙
答案1
尝试运行iptables -L -v
——这将在输出中包含接口名称。
我想在 iptables 中允许本地主机流量,因此我添加了规则
iptables -A INPUT -i lo -j ACCEPT
当我跑步时iptables -L它告诉我这条规则被翻译成了
ACCEPT all -- anywhere anywhere
这让我很困惑。这难道不意味着 iptables 允许所有 INPUT 流量吗?请帮忙
尝试运行iptables -L -v
——这将在输出中包含接口名称。