gpt4 book ai didi

linux - -t 选项不能在 iptables-restore 中使用

转载 作者:IT王子 更新时间:2023-10-29 01:04:01 26 4
gpt4 key购买 nike

当我想从文件中恢复我的 iptables 规则时,我遇到了这个错误。

iptables-restore v1.4.21: The -t option (seen in line 5) cannot be used in iptables-restore.

Error occurred at line: 5
Try `iptables-restore -h' or 'iptables-restore --help' for more information.

这是我的 iptables:

*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-t nat -A POSTROUTING -o eth0 -j MASQUERADE
-A FORWARD -i eth0 -o lxcbr0 -m state --state RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -i lxcbr0 -o eth0 -j ACCEPT
COMMIT

没有 -t 选项我做不到。

最佳答案

我解决了:

*nat
:PREROUTING ACCEPT [0:0]
:INPUT ACCEPT [0:0]
:OUTPUT ACCEPT [1:76]
:POSTROUTING ACCEPT [0:0]
-A POSTROUTING -o eth0 -j MASQUERADE
COMMIT
*filter
:INPUT ACCEPT [95:5492]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [48:3648]
-A FORWARD -i eth0 -o lxcbr0 -m state --state RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -i lxcbr0 -o eth0 -j ACCEPT
COMMIT

关于linux - -t 选项不能在 iptables-restore 中使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35272615/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com