Given two CIDR addresses say 192.168.2.0/14 and 192.168.2.0/32
How do I check if two ip addresses overlap in \"python2.6\"??
I have gone through netaddr and
I wrote this simple command line tool, based on the netaddr lib.
netaddr
pip install ipconflict
Example:
ipconflict 10.0.0.0/22 10.0.1.0/24
Output:
conflict found: 10.0.1.0/24 <-> 10.0.1.0/22