Remove one IP from DNS entry with multiple IPs

SpruceTips

I was going to add a new DNS entry on my server, but I had a typo and accidentally added the IP (10.0.55.41) to an existing entry.

[root@DNS1 ~]# nsupdate
> update add DB2.domain.com. 3600 A 10.0.55.41
> send

Now when I use nslookup I see two IPs

[root@DNS1 ~]# nslookup DB2
Server:         10.0.2.209
Address:        10.220.2.209#53

Name:   DB2.domain.com
Address: 10.0.2.210
Name:   DB2.domain.com
Address: 10.0.55.41

I am trying to remove the extra IP (10.0.55.41) but I get update failed: REFUSED error.

[root@DNS1 ~]# nsupdate
> update delete DB2.doamin.com
> send
update failed: REFUSED

How can I remove the extra IP (10.0.55.41)?

Virsacer

I would try to remove it manually from the zonefile. (Don't forget to increase the serial) and reload it: rndc reload domain.tld

Edit: I forgot: Because it is a dynamic zone you have to freeze it before manually changing with rndc freeze domain.tld and unfreeze it afterwards with rndc thaw domain.tld

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

From an IP how can I get a DNS entry?

From Dev

How do you remove bad DNS server IPs from systemd-resolved?

From Dev

How do you remove bad DNS server IPs from systemd-resolved?

From Dev

WinRm: remove IPs from listeningOn

From Dev

Java remove duplicated entry from IHTTPStreamersession for common IP Address

From Dev

DNS domain pointing to LAN ip only works from one device

From Dev

multiple DNS for one domain

From Dev

Can I (DNS) map one subdomain to multiple Play Framework entry points

From Dev

Multiple IPs bound to one NIC on Windows

From Dev

One server serves over multiple IPs

From Dev

Ping IPs — One time or multiple times?

From Dev

Multiple values in one entry

From Dev

DNS load balancing with multiple IPs on the same domain in GoDaddy

From Dev

regex private ips and remove from logfile

From Dev

PHP/MySQL - Get multiple fields from one entry in a table

From Dev

Get one css file from webpack multiple entry points

From Dev

Where does `resolvconf` gets the IPs of DNS servers from?

From Dev

1 DNS 2 IPS, 1 IP for email server and 1 IP for website

From Dev

check IPs with multiple ports from csv

From Dev

remove value from array when multiple exist just remove one

From Dev

Is it possible that after changing of DNS A record site is loaded from new IP, but scripts from old one?

From Dev

Getting IP from DNS Response

From Dev

Getting IP from DNS Response

From Dev

Windows firewall allow connect to only 1 IP on machine with multiple IPs

From Dev

How to setup VPS to forward multiple IPs to a single static IP

From Dev

Can't SSH from my IP, but can from other IPs

From Dev

Is a Windows DNS cache entry invalided on IP connection failure?

From Dev

Is there an easy way of calculating number of IPs from 2 given IP addresses?

From Dev

Is there an easy way of calculating number of IPs from 2 given IP addresses?

Related Related

  1. 1

    From an IP how can I get a DNS entry?

  2. 2

    How do you remove bad DNS server IPs from systemd-resolved?

  3. 3

    How do you remove bad DNS server IPs from systemd-resolved?

  4. 4

    WinRm: remove IPs from listeningOn

  5. 5

    Java remove duplicated entry from IHTTPStreamersession for common IP Address

  6. 6

    DNS domain pointing to LAN ip only works from one device

  7. 7

    multiple DNS for one domain

  8. 8

    Can I (DNS) map one subdomain to multiple Play Framework entry points

  9. 9

    Multiple IPs bound to one NIC on Windows

  10. 10

    One server serves over multiple IPs

  11. 11

    Ping IPs — One time or multiple times?

  12. 12

    Multiple values in one entry

  13. 13

    DNS load balancing with multiple IPs on the same domain in GoDaddy

  14. 14

    regex private ips and remove from logfile

  15. 15

    PHP/MySQL - Get multiple fields from one entry in a table

  16. 16

    Get one css file from webpack multiple entry points

  17. 17

    Where does `resolvconf` gets the IPs of DNS servers from?

  18. 18

    1 DNS 2 IPS, 1 IP for email server and 1 IP for website

  19. 19

    check IPs with multiple ports from csv

  20. 20

    remove value from array when multiple exist just remove one

  21. 21

    Is it possible that after changing of DNS A record site is loaded from new IP, but scripts from old one?

  22. 22

    Getting IP from DNS Response

  23. 23

    Getting IP from DNS Response

  24. 24

    Windows firewall allow connect to only 1 IP on machine with multiple IPs

  25. 25

    How to setup VPS to forward multiple IPs to a single static IP

  26. 26

    Can't SSH from my IP, but can from other IPs

  27. 27

    Is a Windows DNS cache entry invalided on IP connection failure?

  28. 28

    Is there an easy way of calculating number of IPs from 2 given IP addresses?

  29. 29

    Is there an easy way of calculating number of IPs from 2 given IP addresses?

HotTag

Archive