def add_dns_records(self): options = self.options logger.info("Adding DNS records for %s", self.replica_fqdn) name, domain = self.replica_fqdn.split(".", 1) for reverse_zone in options.reverse_zones: logger.info("Adding reverse zone %s", reverse_zone) add_zone(reverse_zone) for ip in options.ip_addresses: ip_address = str(ip) try: add_fwd_rr(domain, name, ip_address) except errors.PublicError as e: raise admintool.ScriptError( "Could not add A/AAAA DNS record for the replica: %s" % e) if not options.no_reverse: reverse_zone = bindinstance.find_reverse_zone(ip) if reverse_zone is None: logger.warning( "Could not find any IPA managed reverse zone. " "Not creating PTR records") return try: add_ptr_rr(reverse_zone, ip_address, self.replica_fqdn) except errors.PublicError as e: raise admintool.ScriptError( "Could not add PTR DNS record for the replica: %s" % e)
def add_dns_records(self): options = self.options self.log.info("Adding DNS records for %s", self.replica_fqdn) name, domain = self.replica_fqdn.split(".", 1) if not api.Backend.ldap2.isconnected(): api.Backend.ldap2.connect( bind_dn=DN(('cn', 'Directory Manager')), bind_pw=self.dirman_password) for reverse_zone in options.reverse_zones: self.log.info("Adding reverse zone %s", reverse_zone) add_zone(reverse_zone) for ip in options.ip_addresses: ip_address = str(ip) try: add_fwd_rr(domain, name, ip_address) except errors.PublicError as e: raise admintool.ScriptError( "Could not add A/AAAA DNS record for the replica: %s" % e) if not options.no_reverse: reverse_zone = bindinstance.find_reverse_zone(ip) try: add_ptr_rr(reverse_zone, ip_address, self.replica_fqdn) except errors.PublicError as e: raise admintool.ScriptError( "Could not add PTR DNS record for the replica: %s" % e)
def add_dns_records(self): options = self.options self.log.info("Adding DNS records for %s", self.replica_fqdn) name, domain = self.replica_fqdn.split(".", 1) if not api.Backend.ldap2.isconnected(): api.Backend.ldap2.connect(bind_dn=DN(('cn', 'Directory Manager')), bind_pw=self.dirman_password) for reverse_zone in options.reverse_zones: self.log.info("Adding reverse zone %s", reverse_zone) add_zone(reverse_zone) for ip in options.ip_addresses: ip_address = str(ip) try: add_fwd_rr(domain, name, ip_address) except errors.PublicError as e: raise admintool.ScriptError( "Could not add A/AAAA DNS record for the replica: %s" % e) if not options.no_reverse: reverse_zone = bindinstance.find_reverse_zone(ip) if reverse_zone is None: self.log.warning( "Could not find any IPA managed reverse zone. " "Not creating PTR records") return try: add_ptr_rr(reverse_zone, ip_address, self.replica_fqdn) except errors.PublicError as e: raise admintool.ScriptError( "Could not add PTR DNS record for the replica: %s" % e)
bind_dn=DN(('cn', 'Directory Manager')), bind_pw=self.dirman_password) try: add_zone(domain) except errors.PublicError, e: raise admintool.ScriptError( "Could not create forward DNS zone for the replica: %s" % e) for reverse_zone in options.reverse_zones: self.log.info("Adding reverse zone %s", reverse_zone) add_zone(reverse_zone) for ip in options.ip_addresses: ip_address = str(ip) try: add_fwd_rr(domain, name, ip_address) except errors.PublicError, e: raise admintool.ScriptError( "Could not add forward DNS record for the replica: %s" % e) if not options.no_reverse: reverse_zone = bindinstance.find_reverse_zone(ip) try: add_ptr_rr(reverse_zone, ip_address, self.replica_fqdn) except errors.PublicError, e: raise admintool.ScriptError( "Could not add reverse DNS record for the replica: %s" % e) def check_dns(self, replica_fqdn): """Return true if the replica hostname is resolvable"""
api.Backend.ldap2.connect(bind_dn=DN(('cn', 'Directory Manager')), bind_pw=self.dirman_password) try: add_zone(domain) except errors.PublicError, e: raise admintool.ScriptError( "Could not create forward DNS zone for the replica: %s" % e) for reverse_zone in options.reverse_zones: self.log.info("Adding reverse zone %s", reverse_zone) add_zone(reverse_zone) for ip in options.ip_addresses: ip_address = str(ip) try: add_fwd_rr(domain, name, ip_address) except errors.PublicError, e: raise admintool.ScriptError( "Could not add forward DNS record for the replica: %s" % e) if not options.no_reverse: reverse_zone = bindinstance.find_reverse_zone(ip) try: add_ptr_rr(reverse_zone, ip_address, self.replica_fqdn) except errors.PublicError, e: raise admintool.ScriptError( "Could not add reverse DNS record for the replica: %s" % e) def check_dns(self, replica_fqdn): """Return true if the replica hostname is resolvable"""