aboutsummaryrefslogtreecommitdiffstats
path: root/netmon/bin
diff options
context:
space:
mode:
authorMarcel Enguehard <mengueha+fdio@cisco.com>2017-07-19 11:26:26 +0200
committerMarcel Enguehard <mengueha+fdio@cisco.com>2017-07-19 11:51:26 +0000
commit3e6678f9c692553e8902da4d6fb1fe6c087db1f4 (patch)
tree580a46ca5de22a044319eabb295ad980d50589ec /netmon/bin
parent08c4f765cf29dbd6e9a616c542552417eece14fc (diff)
* GUI resource
* MemIf interface for VPP * Better netmodel integration * Draft documentation * New tutorials * Improved monitoring and error handling * Refactored IP addresses and prefixes representation * Improved image mgmt for LXD * Various bugfixes and code refactoring Change-Id: I90da6cf7b5716bc7deb6bf4e24d3f9f01b5a9b0f Signed-off-by: Marcel Enguehard <mengueha+fdio@cisco.com>
Diffstat (limited to 'netmon/bin')
-rwxr-xr-xnetmon/bin/netmon.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/netmon/bin/netmon.py b/netmon/bin/netmon.py
index 46e6327e..0f96d2b9 100755
--- a/netmon/bin/netmon.py
+++ b/netmon/bin/netmon.py
@@ -24,7 +24,8 @@ import sys
PATH=os.path.join(os.path.dirname(__file__), os.path.pardir, os.path.pardir)
sys.path.insert(0, os.path.abspath(PATH))
-import netmodel.network.interfaces
+import netmodel.interfaces
+from netmodel.network.interface import register_interfaces
from netmodel.network.router import Router
from netmodel.model.query import Query, ACTION_SELECT, ACTION_SUBSCRIBE
from netmodel.util.daemon import Daemon
@@ -44,6 +45,7 @@ class RouterDaemon(Daemon):
self._router.add_interface('websocketserver')
self._router.add_interface('bwm')
+ self._router.add_interface('vppctl')
self._router.add_interface('local', router = self._router)