diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2022-09-20 17:16:43 +0200 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2022-09-21 20:53:49 +0200 |
commit | e6ba98a85ca72abc7e7e2001d208bcd1806c2c13 (patch) | |
tree | dc36b04502efdab35b3ab9612e36c4fc008068f4 /data/vyos-firewall-init.conf | |
parent | 448d4f6db9cf6dfceffccf988301e5f4d04c9afa (diff) | |
download | vyos-1x-e6ba98a85ca72abc7e7e2001d208bcd1806c2c13.tar.gz vyos-1x-e6ba98a85ca72abc7e7e2001d208bcd1806c2c13.zip |
nat66: T4605: Refactor NAT66 to use python module for parsing rules
* Rename table to vyos_nat
* Refactor tests to use `verify_nftables` format
Diffstat (limited to 'data/vyos-firewall-init.conf')
-rw-r--r-- | data/vyos-firewall-init.conf | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/data/vyos-firewall-init.conf b/data/vyos-firewall-init.conf index 348299462..3a0e1ee48 100644 --- a/data/vyos-firewall-init.conf +++ b/data/vyos-firewall-init.conf @@ -28,26 +28,6 @@ table ip nat { } } -table ip6 nat { - chain PREROUTING { - type nat hook prerouting priority -100; policy accept; - counter jump VYOS_DNPT_HOOK - } - - chain POSTROUTING { - type nat hook postrouting priority 100; policy accept; - counter jump VYOS_SNPT_HOOK - } - - chain VYOS_DNPT_HOOK { - return - } - - chain VYOS_SNPT_HOOK { - return - } -} - table inet mangle { chain FORWARD { type filter hook forward priority -150; policy accept; |