New ONOS application for multicast and igmp provisioning with OVS.
This is required since ONOS is written to work only with OLT.
Changes to cord-test setup script to automatically start ONOS container if not running,
install the ciena ovs app for multicast and run the test.
diff --git a/src/test/subscriber/subscriberDb.py b/src/test/subscriber/subscriberDb.py
index d6b3f75..89fcc5c 100644
--- a/src/test/subscriber/subscriberDb.py
+++ b/src/test/subscriber/subscriberDb.py
@@ -7,7 +7,7 @@
self.con = sqlite3.connect(db)
self.con.row_factory = sqlite3.Row
self.cur = self.con.cursor()
- self.services = [ 'DHCP', 'IGMP' ]
+ self.services = [ 'TLS', 'DHCP', 'IGMP' ]
self.create = create
if create == True:
self.cur.execute("DROP TABLE IF EXISTS Subscriber")