How do I check whether an IP is contained in a network with python?
Eg:
# pseudo code
IP('10.40.0.1').contained_in(CDIR('10.40.0.0/24)) == True
How do I check whether an IP is contained in a network with python?
Eg:
# pseudo code
IP('10.40.0.1').contained_in(CDIR('10.40.0.0/24)) == True
import hek
ip = "192.168.0.1" # targeted ip address
result = hek.ipstuff.checkip(ip) # checking if ip exist, It'll return True is exist and False if not.
if result == True:
print("ip exist")
elif result == False:
print("ip doesn't exist")
Using Python 3.3+
ipaddress
There's also
backport of ipaddress
.Using
ipaddr