diff options
author | Christian Breunig <christian@breunig.cc> | 2023-10-22 18:40:23 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-10-22 18:41:47 +0200 |
commit | 719a3622f35a0596ffd8a0bd28c071fdaf930153 (patch) | |
tree | 1eda01e73742180dcf65f0270c0029b699b19922 /src/conf_mode | |
parent | 6db8d3ded19f652b99231be0d705d76b598ac72a (diff) | |
download | vyos-1x-719a3622f35a0596ffd8a0bd28c071fdaf930153.tar.gz vyos-1x-719a3622f35a0596ffd8a0bd28c071fdaf930153.zip |
vxlan: T5671: warn about changed default port number
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/interfaces-vxlan.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/conf_mode/interfaces-vxlan.py b/src/conf_mode/interfaces-vxlan.py index 05f68112a..ff8144e74 100755 --- a/src/conf_mode/interfaces-vxlan.py +++ b/src/conf_mode/interfaces-vxlan.py @@ -168,6 +168,13 @@ def verify(vxlan): verify_address(vxlan) verify_bond_bridge_member(vxlan) verify_mirror_redirect(vxlan) + + # We use a defaultValue for port, thus it's always safe to use + if vxlan['port'] == '8472': + Warning('Starting from VyOS 1.4, the default port for VXLAN '\ + 'has been changed to 4789. This matches the IANA assigned '\ + 'standard port number!') + return None def generate(vxlan): |