Infoblox: Reverse lookup zone creation fails

Zone creation with reverse lookup fails with infoblox as backend server.
currently it is handled for default zone_format i.e 'FORWARD' and it is
not handled for 'IPV4' and 'IPV6'. This patch handles the IPV4 and IPV6
formats along with default one.

Change-Id: Iad44842fc1e3e691268182514e14a6d0f60fdc1d
Closes-Bug: #1628057
Reference: https://ipam.illinois.edu/wapidoc/objects/zone_forward.html#zone-format
This commit is contained in:
Selvakumar S 2016-09-28 05:19:12 -04:00 committed by selvakumar
parent cc981cf4b9
commit 7ac7eb4c28
1 changed files with 7 additions and 1 deletions

View File

@ -111,11 +111,17 @@ class InfobloxObjectManipulator(object):
def create_zone_auth(self, fqdn, dns_view):
try:
if fqdn.endswith("in-addr.arpa"):
zone_format = 'IPV4'
elif fqdn.endswith("ip6.arpa"):
zone_format = 'IPV6'
else:
zone_format = 'FORWARD'
self._create_infoblox_object(
'zone_auth',
{'fqdn': fqdn, 'view': dns_view},
{'ns_group': self.connector.ns_group,
'restart_if_needed': True},
'restart_if_needed': True, 'zone_format': zone_format},
check_if_exists=True)
except exc.InfobloxCannotCreateObject as e:
LOG.warning(e)