summaryrefslogtreecommitdiff
path: root/src/conf_mode
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2025-02-25 15:48:25 +0000
committerGitHub <noreply@github.com>2025-02-25 15:48:25 +0000
commite9d9c096c0e046939ff53d68baa230064ea93242 (patch)
tree0f48989f0349625cc9f4715692a065ac2e5d8073 /src/conf_mode
parentfe08f7f3a6bc48b190727105ea6172af06444bdf (diff)
parent0a7096c874340ced4eb6aa17ae47b8d0ae6d692c (diff)
downloadvyos-1x-e9d9c096c0e046939ff53d68baa230064ea93242.tar.gz
vyos-1x-e9d9c096c0e046939ff53d68baa230064ea93242.zip
Merge pull request #4364 from natali-rs1985/T7171
T7171: Add dstport option to GENEVE tunnels
Diffstat (limited to 'src/conf_mode')
-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': {}})