Houman Asked: 2021-11-11 00:43:41 +0800 CST2021-11-11 00:43:41 +0800 CST 2021-11-11 00:43:41 +0800 CST 如何通过 iptables 打开 ip 协议 ESP 的流量? 772 我一直在研究,但无法找到以下等价物的明确答案: apt install nftables nft add rule inet filter input ip protocol esp counter accept 在iptables中? 是像下面这样简单还是有更多? sudo iptables -A INPUT -p 50 -j ACCEPT sudo iptables -A INPUT -p 51 -j ACCEPT 谢谢 debian iptables nftables 1 个回答 Voted Best Answer Thomas Coche 2021-11-11T01:54:39+08:002021-11-11T01:54:39+08:00 通常你的命令 :sudo iptables -A INPUT -p 50 -j ACCEPT应该可以工作。使用此规则,您接受所有 esp 连接 并且sudo iptables -A INPUT -p esp -j ACCEPT可以正常工作 您可以在以下位置找到支持的协议列表:/etc/protocols
通常你的命令 :
sudo iptables -A INPUT -p 50 -j ACCEPT
应该可以工作。使用此规则,您接受所有 esp 连接并且
sudo iptables -A INPUT -p esp -j ACCEPT
可以正常工作您可以在以下位置找到支持的协议列表:/etc/protocols