diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-01-01 10:53:11 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-01-01 10:53:11 +0100 |
commit | 901e40dc3b52fb3d8dc7308f54da42b858b61798 (patch) | |
tree | 0363bfabd6f441bc7e48b63c267a7123ef50bc40 /src/conf_mode/nat66.py | |
parent | 0091f6080181cc3836d70589d9a2f4a1c1cb11a8 (diff) | |
download | vyos-1x-901e40dc3b52fb3d8dc7308f54da42b858b61798.tar.gz vyos-1x-901e40dc3b52fb3d8dc7308f54da42b858b61798.zip |
nat: T2199: rename iptables -> nftables variable prefix
Diffstat (limited to 'src/conf_mode/nat66.py')
-rwxr-xr-x | src/conf_mode/nat66.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/conf_mode/nat66.py b/src/conf_mode/nat66.py index d0b6d27ac..8bf2e8073 100755 --- a/src/conf_mode/nat66.py +++ b/src/conf_mode/nat66.py @@ -35,7 +35,7 @@ airbag.enable() k_mod = ['nft_nat', 'nft_chain_nat'] -iptables_nat_config = '/tmp/vyos-nat66-rules.nft' +nftables_nat66_config = '/tmp/vyos-nat66-rules.nft' ndppd_config = '/run/ndppd/ndppd.conf' def get_handler(json, chain, target): @@ -145,22 +145,22 @@ def verify(nat): return None def generate(nat): - render(iptables_nat_config, 'firewall/nftables-nat66.tmpl', nat, permission=0o755) + render(nftables_nat66_config, 'firewall/nftables-nat66.tmpl', nat, permission=0o755) render(ndppd_config, 'ndppd/ndppd.conf.tmpl', nat, permission=0o755) return None def apply(nat): if not nat: return None - cmd(f'{iptables_nat_config}') + cmd(f'{nftables_nat66_config}') if 'deleted' in nat or not dict_search('source.rule', nat): cmd('systemctl stop ndppd') if os.path.isfile(ndppd_config): os.unlink(ndppd_config) else: cmd('systemctl restart ndppd') - if os.path.isfile(iptables_nat_config): - os.unlink(iptables_nat_config) + if os.path.isfile(nftables_nat66_config): + os.unlink(nftables_nat66_config) return None |