summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNataliia Solomko <natalirs1985@gmail.com>2025-02-20 17:08:53 +0200
committerNataliia Solomko <natalirs1985@gmail.com>2025-02-25 17:13:56 +0200
commit0a7096c874340ced4eb6aa17ae47b8d0ae6d692c (patch)
tree34bf85e7588938ea1a00c0f19b10aec02ff194d8 /src
parentc63b11666410d09359d1bebffe96d8d0708bc83a (diff)
downloadvyos-1x-0a7096c874340ced4eb6aa17ae47b8d0ae6d692c.tar.gz
vyos-1x-0a7096c874340ced4eb6aa17ae47b8d0ae6d692c.zip
T7171: Add dstport option to GENEVE tunnels
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/interfaces_geneve.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces_geneve.py b/src/conf_mode/interfaces_geneve.py
index 007708d4a..1c5b4d0e7 100755
--- a/src/conf_mode/interfaces_geneve.py
+++ b/src/conf_mode/interfaces_geneve.py
@@ -47,7 +47,7 @@ def get_config(config=None):
# GENEVE interfaces are picky and require recreation if certain parameters
# change. But a GENEVE interface should - of course - not be re-created if
# it's description or IP address is adjusted. Feels somehow logic doesn't it?
- for cli_option in ['remote', 'vni', 'parameters']:
+ for cli_option in ['remote', 'vni', 'parameters', 'port']:
if is_node_changed(conf, base + [ifname, cli_option]):
geneve.update({'rebuild_required': {}})