使用nsupdate针对Bind9创建NAPTR记录的工作示例是什么?
男人不知道是怎么回事:
update add {domain-name} {ttl} [class] {type} {data...}
Adds a new resource record with the specified ttl, class and data.但我似乎找不到NAPTR的正确格式
我的尝试:
echo -e 'update add enum.example.com 60 IN NAPTR 1.1.1.1.1."u"."E2U+sip"."!^.*$!test123test@example.com!" .'"\nsend"|nsupdate在以下方面的成果:
invalid rdata format: not a valid number
syntax error发布于 2012-12-04 10:44:54
下面是一个有用的例子:
echo -e "nsupdate "update add 1.2.3.4 60 IN NAPTR 100 10 \"u\" \"E2U+h323\" \"!^.*$!test@example.com!\" ."\nserver localhost\nsend" | /usr/bin/nsupdate -y rndckey:mykey -vhttps://serverfault.com/questions/453457
复制相似问题