From: Steinar H. Gunderson Date: Sun, 9 Apr 2006 19:20:35 +0000 (+0000) Subject: Start the client nets at 1, not 2. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=c5e95c6729eb350aef927119616985d01be1fe7f;p=nms Start the client nets at 1, not 2. --- 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