This commit is contained in:
John Bowdre 2021-01-11 18:00:07 -06:00
parent 7b8065c9de
commit f0b6ae317b

View file

@ -73,8 +73,8 @@ def do_get_ip_ranges(self, auth_credentials, cert):
logging.info(f"Found subnet: {ipRange['name']} - {ipRange['description']}.")
network = ipaddress.ip_network(str(subnet['subnet']) + '/' + str(subnet['mask']))
ipRange['ipVersion'] = 'IPv' + str(network.version)
ipRange['startIpAddress'] = str(network[10])
ipRange['endIpAddress'] = str(network[-6])
ipRange['startIPAddress'] = str(network[10])
ipRange['endIPAddress'] = str(network[-6])
ipRange['subnetPrefixLength'] = str(subnet['mask'])
logging.debug(ipRange)
ipRanges.append(ipRange)