summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-10-30 16:23:30 +0100
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2023-10-30 17:53:31 +0000
commit4fdecbf61b02c102f0070d9dd1f785643b056de2 (patch)
tree8e89c81ca1ee4662d9e1e72b04fe0199600c7221 /python
parent2d60bc124447c5f978536b796bda4524b121a03c (diff)
downloadvyos-1x-4fdecbf61b02c102f0070d9dd1f785643b056de2.tar.gz
vyos-1x-4fdecbf61b02c102f0070d9dd1f785643b056de2.zip
vxlan: T5699: migrate "external" CLI know to "parameters external"
As we have a bunch of options under "paramteres" already and "external" is clearly one of them it should be migrated under that node as well. (cherry picked from commit cc7ba8824a5e9ec818f0bbe7fb85e1713a591527)
Diffstat (limited to 'python')
-rw-r--r--python/vyos/ifconfig/vxlan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/vxlan.py b/python/vyos/ifconfig/vxlan.py
index 1fe5db7cd..2ea48b214 100644
--- a/python/vyos/ifconfig/vxlan.py
+++ b/python/vyos/ifconfig/vxlan.py
@@ -68,8 +68,8 @@ class VXLANIf(Interface):
# - https://man7.org/linux/man-pages/man8/ip-link.8.html
mapping = {
'group' : 'group',
- 'external' : 'external',
'gpe' : 'gpe',
+ 'parameters.external' : 'external',
'parameters.ip.df' : 'df',
'parameters.ip.tos' : 'tos',
'parameters.ip.ttl' : 'ttl',