summaryrefslogtreecommitdiff
path: root/python/vyos/ifconfig
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-02-27 21:37:15 +0100
committerChristian Poessinger <christian@poessinger.com>2021-02-28 00:54:37 +0100
commit582b718221c67ddb71e39fbad0a72241761304a9 (patch)
tree4bb7c0ea424ce74137e5ba966e05bbeef4e7cede /python/vyos/ifconfig
parent8f100189086102458ff8e4f61f842cf44a6bf8aa (diff)
downloadvyos-1x-582b718221c67ddb71e39fbad0a72241761304a9.tar.gz
vyos-1x-582b718221c67ddb71e39fbad0a72241761304a9.zip
tunnel: T3366: rename local-ip to source-address
Streamline the CLI configuration where we try to use source-address when creating connections which are especially sourced from a discrete address.
Diffstat (limited to 'python/vyos/ifconfig')
-rw-r--r--python/vyos/ifconfig/tunnel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/ifconfig/tunnel.py b/python/vyos/ifconfig/tunnel.py
index a74d50646..2820e2563 100644
--- a/python/vyos/ifconfig/tunnel.py
+++ b/python/vyos/ifconfig/tunnel.py
@@ -51,9 +51,9 @@ class TunnelIf(Interface):
# - https://man7.org/linux/man-pages/man8/ip-link.8.html
# - https://man7.org/linux/man-pages/man8/ip-tunnel.8.html
mapping = {
- 'local_ip' : 'local',
- 'remote_ip' : 'remote',
+ 'source_address' : 'local',
'source_interface' : 'dev',
+ 'remote_ip' : 'remote',
'parameters.ip.key' : 'key',
'parameters.ip.tos' : 'tos',
'parameters.ip.ttl' : 'ttl',