diff options
author | Nicolas Fort <nicolasfort1988@gmail.com> | 2023-12-11 10:08:59 +0000 |
---|---|---|
committer | Nicolas Fort <nicolasfort1988@gmail.com> | 2023-12-11 10:08:59 +0000 |
commit | 5cb95aed965b45a900c6ba97c0bccefed83332b6 (patch) | |
tree | 1a79c48bf1bacee897f9d447d073f6b6ca2ad7b2 /src | |
parent | fedb2ee0c677dca23de24d9e70ff239e7556da28 (diff) | |
download | vyos-1x-5cb95aed965b45a900c6ba97c0bccefed83332b6.tar.gz vyos-1x-5cb95aed965b45a900c6ba97c0bccefed83332b6.zip |
T5804: nat: remove inbound|outbound interface from old configuration when it was set to <any>.
Diffstat (limited to 'src')
-rwxr-xr-x | src/migration-scripts/nat/6-to-7 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/migration-scripts/nat/6-to-7 b/src/migration-scripts/nat/6-to-7 index b5f6328ef..a2e735394 100755 --- a/src/migration-scripts/nat/6-to-7 +++ b/src/migration-scripts/nat/6-to-7 @@ -21,6 +21,7 @@ # to # 'set nat [source|destination] rule X [inbound-interface|outbound interface] name <iface>' # 'set nat [source|destination] rule X [inbound-interface|outbound interface] group <iface_group>' +# Also remove command if interface == any from sys import argv,exit from vyos.configtree import ConfigTree @@ -56,8 +57,11 @@ for direction in ['source', 'destination']: if config.exists(base + [iface]): if config.exists(base + [iface, 'interface-name']): tmp = config.return_value(base + [iface, 'interface-name']) - config.delete(base + [iface, 'interface-name']) - config.set(base + [iface, 'name'], value=tmp) + if tmp != 'any': + config.delete(base + [iface, 'interface-name']) + config.set(base + [iface, 'name'], value=tmp) + else: + config.delete(base + [iface]) try: with open(file_name, 'w') as f: |