我们知道我们可以通过执行以下步骤来更新记录(其 IP):
nsupdate
server ns.bar44.com
zone bar44.com
update delete somehost.bar44.com. A
update add somehost.bar44.com. 86400 A 10.10.10.1
show
send
正如我们所看到的,我们知道 somehost.bar44.com。存在于数据库中,如果我想更新现有记录的 IP,这将起作用,但如果我想更改主机名而不是 IP,该怎么办?例如,我想将 10.10.10.1 设置为 somehost22.bar44.com 的 IP。什么能让我知道 IP 已被 somehost.bar44.com 占用?
这是使用 nsupdate 删除某个区域的整个数据库的方法吗?
答案1
免责声明:使用此脚本需要您自担风险
它能做什么?
正如 O/P 想要的那样,假设他想要添加somedomain.bar44.com
并且somedomain44.bar44.com
已经存在于该区域中,那么它应该首先删除somedomain44.bar44.com
然后重新添加somedomain.bar44.com
到该区域中。下面的脚本就是这样做的。在 Ubuntu 上使用 BIND9 进行了测试。
简而言之,xyz.bar.com
如果尚不存在,它将添加,如果存在,它将首先删除 ( xyz*.bar.com
),然后使用您提供的新信息重新添加。
脚本:
#!/bin/bash
#
## Update DNS Records Interactive
## Rahul Patil <http://www.linuxian.com>
#
## Functions
#
ask() {
while [[ $ans == "" ]]
do
read -p "${@}" ans
done
echo $ans
}
forward_zone_update() {
local rr=${@}
echo "
server $DNS_SERVER
zone $DNS_ZONE
update add $rr
show
send" | nsupdate
}
delete_record() {
local rr=${@}
echo "
server $DNS_SERVER
zone $DNS_ZONE
update delete $rr
show
send" | nsupdate
}
#
## Global Variable
#
DNS_IP="127.0.0.1"
DNS_SERVER="ns1.rahul.local"
DNS_ZONE="rahul.local"
DIG_CMD='dig +noquestion +nocmd +nostat +nocomments'
update_rr_a=$( ask "Enter FQDN of Record (Ex. xyz.${DNS_ZONE}) :-")
update_rr=$( ask "Enter IP of Record :-")
found_rr=$($DIG_CMD @${DNS_IP} AXFR ${DNS_ZONE} | grep ^"${update_rr_a%.$DNS_ZONE}" | tee /tmp/rr.tmp )
echo "Checking ${update_rr_a}..."
if [[ -z "${found_rr}" ]]
then
echo "${update_rr_a} does exists"
echo "${update_rr_a} adding to ${DNS_ZONE}"
forward_zone_update "${update_rr_a} 86400 IN A ${update_rr}"
echo "Done!!"
else
echo "${update_rr_a} already exists"
ans=$(ask "Do you want to Delete RR and want to re-add(y/n?)")
case $ans in
[yY]|[yY][eE][sS]) while read r;
do delete_record $r ;
done < /tmp/rr.tmp ;;
[nN]|[nN][oO]) exit 1 ;;
esac
forward_zone_update "${update_rr_a} 86400 IN A ${update_rr}"
echo "Done!!"
fi