diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-19 10:30:03 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-19 10:30:03 +0100 |
commit | 0f04c1cd73fa40eee3761393db5183b2d9108309 (patch) | |
tree | 99f36e885a749cd82a8ff1733a3d606c7334d0a4 /python | |
parent | 4957ef1bd8f1f0bf0b4828e7fadb64d1bac0bd2d (diff) | |
download | vyos-1x-0f04c1cd73fa40eee3761393db5183b2d9108309.tar.gz vyos-1x-0f04c1cd73fa40eee3761393db5183b2d9108309.zip |
vxlan: T3700: add support for Generic Protocol extension (VXLAN-GPE)
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ifconfig/vxlan.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/vyos/ifconfig/vxlan.py b/python/vyos/ifconfig/vxlan.py index 9615f396d..0c5282db4 100644 --- a/python/vyos/ifconfig/vxlan.py +++ b/python/vyos/ifconfig/vxlan.py @@ -56,6 +56,7 @@ class VXLANIf(Interface): mapping = { 'group' : 'group', 'external' : 'external', + 'gpe' : 'gpe', 'parameters.ip.dont_fragment': 'df set', 'parameters.ip.tos' : 'tos', 'parameters.ip.ttl' : 'ttl', |