From c5e95c6729eb350aef927119616985d01be1fe7f Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 9 Apr 2006 19:20:35 +0000 Subject: [PATCH] Start the client nets at 1, not 2. --- zyxel/switchmap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zyxel/switchmap.py b/zyxel/switchmap.py index 99d07e7..d0800cc 100755 --- a/zyxel/switchmap.py +++ b/zyxel/switchmap.py @@ -46,7 +46,7 @@ switches = open("switches-zyxel.txt","w") vlan_list = vlans.keys() vlan_list.sort() -i = 2; +i = 1; for vlan in vlan_list: switches.write("194.0.%u.0 24 split:%s\n" % (i, ",".join(vlans[vlan]))) i = i + 1 -- 2.39.2