趣小组
[ MAKE ]
首页
节点
分享
创造
问与答
二手交易
编程
电子
树莓派
Arduino
手工
小玩意
ACG 二次元
科学
文化
电影
宠物
旅行
技术支持
登录
注册
首页
问与答
ip6tables 如何删除规则?
Tony
221.8m
•
2021-11-14
•
1647 次点击
错误地执行了 `ip6tables -t nat -A POSTROUTING -s fc00:17:1:1::/64 -j MASQUERADE` 命令,如何删除新添加的那条规则? 目前有以下规则: ``` root@debian:~# ip6tables -t nat -L Chain PREROUTING (policy ACCEPT) target prot opt source destination Chain INPUT (policy ACCEPT) target prot opt source destination Chain POSTROUTING (policy ACCEPT) target prot opt source destination MASQUERADE all fc00:17:1:1::/64 anywhere Chain OUTPUT (policy ACCEPT) target prot opt source destination ```
错误地执行了 `ip6tables -t nat -A POSTROUTING -s fc00:17:1:1::/64 -j MASQUERADE` 命令,如何删除新添加的那条规则?
目前有以下规则:
```
root@debian:~# ip6tables -t nat -L
Chain PREROUTING (policy ACCEPT)
target prot opt source destination
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain POSTROUTING (policy ACCEPT)
target prot opt source destination
MASQUERADE all fc00:17:1:1::/64 anywhere
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
```
收藏
♥ 感谢
Spoony
小组长
2021-11-14
♥ 1
ip6tables-restore 恢复初始配置
Tony
221.8m
2021-11-14
@Spoony 输入命令后卡了半天不动
找到方法了,直接清空 nat 表 POSTROUTING 所有规则。
ip6tables -t nat -F POSTROUTING
Tony
221.8m
2021-11-14
iptables 相关:
iptables规则查看,添加,删除和修改
https://blog.csdn.net/xfks55/article/details/50148389
iptables 1. 规则、表、链、表链关系
https://blog.csdn.net/weixin_42639771/article/details/89257552
iptables 2: 规则的查看、添加、删除、修改
https://blog.csdn.net/weixin_42639771/article/details/89296395
iptables 3: 动作MARK NFQUEUE
https://blog.csdn.net/weixin_42639771/article/details/89352109
ip6tables 命令用法与 iptables 相同,不同的是ip6tables采用的TCP/IP协议为IPv6。
有需要时可以参考一下
登录
或
注册
后可回复。
›
怎样进行有效的提问?