diff options
author | John Estabrook <jestabro@vyos.io> | 2023-08-06 14:16:15 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2023-08-07 00:48:31 -0500 |
commit | 864472e4946155542b151b4b769c4714c5b409e1 (patch) | |
tree | 5d8bdac2c44f03e7149f56bd1ce13da80f247f8f /src/conf_mode/nat66.py | |
parent | 3c440f439a8d7ce3a3f852fcb845d9e68d297396 (diff) | |
download | vyos-1x-864472e4946155542b151b4b769c4714c5b409e1.tar.gz vyos-1x-864472e4946155542b151b4b769c4714c5b409e1.zip |
T5319: remove workarounds for defaults in nat66.py
Diffstat (limited to 'src/conf_mode/nat66.py')
-rwxr-xr-x | src/conf_mode/nat66.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/conf_mode/nat66.py b/src/conf_mode/nat66.py index 25f625b84..4c12618bc 100755 --- a/src/conf_mode/nat66.py +++ b/src/conf_mode/nat66.py @@ -23,13 +23,11 @@ from netifaces import interfaces from vyos.base import Warning from vyos.config import Config -from vyos.configdict import dict_merge from vyos.template import render from vyos.utils.process import cmd from vyos.utils.kernel import check_kmod from vyos.utils.dict import dict_search from vyos.template import is_ipv6 -from vyos.xml import defaults from vyos import ConfigError from vyos import airbag airbag.enable() @@ -60,16 +58,6 @@ def get_config(config=None): base = ['nat66'] nat = conf.get_config_dict(base, key_mangling=('-', '_'), get_first_key=True) - # T2665: we must add the tagNode defaults individually until this is - # moved to the base class - for direction in ['source', 'destination']: - if direction in nat: - default_values = defaults(base + [direction, 'rule']) - if 'rule' in nat[direction]: - for rule in nat[direction]['rule']: - nat[direction]['rule'][rule] = dict_merge(default_values, - nat[direction]['rule'][rule]) - # read in current nftable (once) for further processing tmp = cmd('nft -j list table ip6 raw') nftable_json = json.loads(tmp) |