diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-11-24 20:33:25 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-11-24 20:33:25 +0100 |
commit | 525af4f27dc2aa7e226f2bba46b4b1736bbc014f (patch) | |
tree | 8068edf769df8f680246ebd0e5e1e6e625ff3ed2 /src/conf_mode/interfaces-vxlan.py | |
parent | 24b23d41146eddd8fb0609ad4ae85d27e7c6ec6a (diff) | |
parent | 5238f0970219639e988bc31beb7db27b43f94e6e (diff) | |
download | vyos-1x-525af4f27dc2aa7e226f2bba46b4b1736bbc014f.tar.gz vyos-1x-525af4f27dc2aa7e226f2bba46b4b1736bbc014f.zip |
Merge branch 'current' of github.com:vyos/vyos-1x into equuleus
* 'current' of github.com:vyos/vyos-1x:
bridge: T1673: re-use "base" variable
bridge: T1673: add missing VLAN bridge member migration
geneve: T1799: add misssing "vni" to default_config_data
vxlan: T1636: add misssing "vni" to default_config_data
geneve: T1799: set minimum MTU size 1500 bytes
geneve: T1799: add IPv4 routing parameters
geneve: T1799: support bridging
geneve: T1799: add Generic Network Virtualization Encapsulation
Diffstat (limited to 'src/conf_mode/interfaces-vxlan.py')
-rwxr-xr-x | src/conf_mode/interfaces-vxlan.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/conf_mode/interfaces-vxlan.py b/src/conf_mode/interfaces-vxlan.py index 1097ae4d0..30ff1755d 100755 --- a/src/conf_mode/interfaces-vxlan.py +++ b/src/conf_mode/interfaces-vxlan.py @@ -38,8 +38,9 @@ default_config_data = { 'link': '', 'mtu': 1450, 'remote': '', - 'remote_port': 8472 # The Linux implementation of VXLAN pre-dates - # the IANA's selection of a standard destination port + 'remote_port': 8472, # The Linux implementation of VXLAN pre-dates + # the IANA's selection of a standard destination port + 'vni': '' } def get_config(): |