Linux
命名動態更新模擬
我想通過動態更新手動更改綁定伺服器中的一些條目。但是,我找不到任何特定的工具來做到這一點。是否有任何 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 */