Using this python script to make the int-ip-address: #!/usr/bin/env python import socket import struct def ip2long(ip): packedIP = socket.inet_aton(ip) return struct.unpack("!L", packedIP)[0] print…
Using this python script to make the int-ip-address: #!/usr/bin/env python import socket import struct def ip2long(ip): packedIP = socket.inet_aton(ip) return struct.unpack("!L", packedIP)[0] print…