summaryrefslogtreecommitdiff
path: root/python/vyos/ifconfig/operational.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-09-19 21:08:40 +0200
committerChristian Poessinger <christian@poessinger.com>2020-09-19 21:08:40 +0200
commitd1c9ee33f25e45cea0d01f9685f99c960ed4d7f8 (patch)
tree72fdd97c9050f0e77a7a5bc744de3266e4058cac /python/vyos/ifconfig/operational.py
parent14c754f8bd6c96165d8ad3745c19c80a562910e1 (diff)
downloadvyos-1x-d1c9ee33f25e45cea0d01f9685f99c960ed4d7f8.tar.gz
vyos-1x-d1c9ee33f25e45cea0d01f9685f99c960ed4d7f8.zip
ifconfig: T2653: convert VLAN interfaces do discrete class
Instead of using an Adapter pattern to make interfaces VLAN-aware, create a derived class named VLANIf to represent a VLAN. This change was necessary to eliminate mixed code in Interfaces class which was VLAN - free, but recently gained some VLAN specific code for set_admin_state(). In addition this "autoresolves" the issue in T2894 as a bond vlan interface will no longer change the lower interface.
Diffstat (limited to 'python/vyos/ifconfig/operational.py')
-rw-r--r--python/vyos/ifconfig/operational.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/python/vyos/ifconfig/operational.py b/python/vyos/ifconfig/operational.py
index d585c1873..33e8614f0 100644
--- a/python/vyos/ifconfig/operational.py
+++ b/python/vyos/ifconfig/operational.py
@@ -14,20 +14,19 @@
# License along with this library. If not, see <http://www.gnu.org/licenses/>.
import os
+
from time import time
from datetime import datetime
from functools import reduce
-
from tabulate import tabulate
from vyos.ifconfig import Control
-
class Operational(Control):
"""
A class able to load Interface statistics
"""
-
+
cache_magic = 'XYZZYX'
_stat_names = {