Dns

從具有多個 IP 的 DNS 條目中刪除一個 IP

  • November 22, 2019

我打算在我的伺服器上添加一個新的 DNS 條目,但我有一個錯字,不小心將 IP (10.0.55.41) 添加到現有條目中。

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

現在,當我使用 nslookup 時,我看到兩個 IP

[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

我正在嘗試刪除額外的 IP (10.0.55.41) 但我得到更新失敗:拒絕錯誤。

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

如何刪除額外的 IP (10.0.55.41)?

我會嘗試從區域文件中手動刪除它。(不要忘記增加序列號)並重新載入它:rndc reload domain.tld

編輯:我忘記了:因為它是一個動態區域,所以您必須在手動更改之前rndc freeze domain.tld凍結它,然後使用解凍它rndc thaw domain.tld

引用自:https://unix.stackexchange.com/questions/553411