From d37329c0a2dd057b6cb53d3695ec443e14e4bdc2 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Sun, 12 Dec 2021 23:00:09 -0800 Subject: [PATCH] WIP: Increase uniring size to six nodes. --- mininet_optical/examples/uniring.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mininet_optical/examples/uniring.py b/mininet_optical/examples/uniring.py index d237e20b..f25d93dd 100755 --- a/mininet_optical/examples/uniring.py +++ b/mininet_optical/examples/uniring.py @@ -193,7 +193,7 @@ def test(net): cleanup() # Just in case! setLogLevel('info') if 'clean' in argv: exit(0) - topo = UniRingTopo(N=4) + topo = UniRingTopo(N=6) net = Mininet(topo=topo) # restServer = RestServer(net) net.start()