List constituent networks of an address range
Given an address range, this returns the list of constituent networks.
If you know the address range matches the boundaries of a single network, it
might be preferable to use common_network()
. This returns an ip_network
vector instead of a list of ip_network
vectors.
summarize_address_range(address1, address2)
address1 |
An |
address2 |
An |
A list of ip_network
vectors
# address range matches network boundaries summarize_address_range(ip_address("192.168.0.0"), ip_address("192.168.0.15")) # address range does not match network boundaries summarize_address_range(ip_address("192.167.255.255"), ip_address("192.168.0.16"))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.