Linux

命名動態更新模擬

  • June 4, 2011

我想通過動態更新手動更改綁定伺服器中的一些條目。但是,我找不到任何特定的工具來做到這一點。是否有任何 cli 應用程序可以在其中指定要添加/刪除和發送特定請求的記錄?

nsupdate你在找什麼。它可用於對適當配置的 BIND 安裝進行動態更改。

nsupdate -k /etc/somekeyfile
> server 127.0.0.1 /* address from the controls section of named.conf */
> zone local
> update add usvr.local 86400 cname ubuntuSVR.local
> send /* add the record */
> update delete usvr.local
> send /* delete the record */

引用自:https://serverfault.com/questions/276693