我想通过动态更新手动更改 Bind 服务器中的某些条目。但是我找不到任何特定的工具来执行此操作。是否有任何 CLI 应用程序可以指定要添加/删除的记录并发送特定请求?
答案1
是更新您要找的。它可用于对适当配置的 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 */