diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-03-07 10:04:59 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-03-07 10:04:59 +0100 |
commit | 2eab81070c5819dd6252a37bf74511b87a57368d (patch) | |
tree | c52c13a22a975cfdf7d1ca80d2816e98d67b544f | |
parent | 8e13cbd8439e91b91197dfe37b5e38203e2cb135 (diff) | |
download | vyos-1x-2eab81070c5819dd6252a37bf74511b87a57368d.tar.gz vyos-1x-2eab81070c5819dd6252a37bf74511b87a57368d.zip |
Revert "op-mode: T3357: Fix show_interfaces bug with tunnels"
This reverts commit e1c993f57efdf91f26a36f1d0339298e63fdf20e.
-rwxr-xr-x | src/op_mode/show_interfaces.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/op_mode/show_interfaces.py b/src/op_mode/show_interfaces.py index ebeca3fc8..39e5dc7ac 100755 --- a/src/op_mode/show_interfaces.py +++ b/src/op_mode/show_interfaces.py @@ -71,7 +71,10 @@ def filtered_interfaces(ifnames, iftypes, vif, vrrp): if ifnames and ifname not in ifnames: continue - interface = Interface(ifname) + # return the class which can handle this interface name + klass = Section.klass(ifname) + # connect to the interface + interface = klass(ifname, create=False, debug=False) if iftypes and interface.definition['section'] not in iftypes: continue |