From 8e8081c408b72cfa6d8754f667b992e349b7e20c Mon Sep 17 00:00:00 2001 From: Brandon Heller Date: Mon, 25 Jan 2010 15:27:50 -0800 Subject: [PATCH] Add VL2 reduced topology --- bin/mn_run.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/mn_run.py b/bin/mn_run.py index ae92013..1d542d9 100755 --- a/bin/mn_run.py +++ b/bin/mn_run.py @@ -35,7 +35,8 @@ if USE_RIPCORD: 'tree1024': (lambda: TreeTopo(depth = 3, fanout = 32)), 'fattree4': (lambda: FatTreeTopo(k = 4)), 'fattree6': (lambda: FatTreeTopo(k = 6)), - 'vl2': (lambda: VL2Topo(da = 4, di = 4))} + 'vl2': (lambda: VL2Topo(da = 4, di = 4)), + 'vl2reduced': (lambda: VL2Topo(da = 4, di = 4, edge_down = 1))} TOPOS.update(TOPOS_RIPCORD) SWITCH_DEF = 'kernel'