diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-03-23 02:35:46 +0000 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-03-23 04:14:21 +0000 |
commit | f71a7461e44a98e862810bed3d0b9d280ee5dae0 (patch) | |
tree | cc3e0e36146821045133a36ed0c23957dc951990 /python/vyos/ifconfig/interface.py | |
parent | f06d9b22a6d9b355b4faa0271d31d4c2f58369a7 (diff) | |
download | vyos-1x-f71a7461e44a98e862810bed3d0b9d280ee5dae0.tar.gz vyos-1x-f71a7461e44a98e862810bed3d0b9d280ee5dae0.zip |
tunnel: T31: add support for vrf on tunnels
Diffstat (limited to 'python/vyos/ifconfig/interface.py')
-rw-r--r-- | python/vyos/ifconfig/interface.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py index 21ffa88f6..9de24d729 100644 --- a/python/vyos/ifconfig/interface.py +++ b/python/vyos/ifconfig/interface.py @@ -89,7 +89,12 @@ class Interface(Control): 'shellcmd': 'ip link set dev {ifname} master {value}', }, 'del_vrf': { - 'shellcmd': 'ip link set dev {ifname} nomaster {value}', + 'shellcmd': 'ip link set dev {ifname} nomaster', + }, + 'vrf': { + 'force': True, + 'convert': lambda v: f'master {v}' if v else 'nomaster', + 'shellcmd': 'ip link set dev {ifname} {value}', }, } @@ -308,7 +313,7 @@ class Interface(Control): """ self.set_interface('add_vrf', vrf) - def del_vrf(self, vrf): + def del_vrf(self, vrf=''): """ Remove interface from given VRF instance. |