-
Notifications
You must be signed in to change notification settings - Fork 6
/
ipcalc.py
executable file
·44 lines (41 loc) · 1.03 KB
/
ipcalc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
import sys
def mask2bits(mask):
ma = mask.split('.')
if len(ma) != 4:
print "ERROR: malformed subnet mask %s" % (mask,)
sys.exit(1)
last = 255
for octet in ma:
if not octet in ['255','254','252','248','240','224','192','128','0'] \
or int(octet) > last:
print "ERROR: malformed subnet mask %s" % (mask,)
sys.exit(1)
pass
last = int(octet)
pass
bits = 0
for octet in ma:
octet = int(octet)
if octet == 0:
break
for i in range(0,8):
bits += (1 & octet)
octet >>= 1
pass
pass
print str(bits)
return 0
if __name__ == '__main__':
if sys.argv < 3:
print "ERROR: must supply at least three arguments!"
sys.exit(1)
pass
if sys.argv[1] == 'mask2bits':
ret = mask2bits(sys.argv[2])
else:
print "ERROR: unsupported subcommand!"
sys.exit(1)
pass
sys.exit(ret)
pass