2

nsupdate allows to delete PTR record like this:

delete 1.0.168.192.in-addr.arpa PTR

How do I delete PTR record by hostname, something like

delete host.domain.com PTR

I've read man page, but it didn't help. An example would be appreciated.

Vladimir M.
  • 135
  • 2
  • 6

2 Answers2

4

nsupdate can't do that. The first parameter after "delete" is "name" of the record. You're trying to delete with "data" of the record.

You can scan the zone file, find matching records, add them to a file with a format that nsupdate understands and feed it to nsupdate.

Mer
  • 981
  • 4
  • 9
-1

Here an example:

nsupdate -k keyfile << EOF
server yourserver
update delete 11.1.168.192.in-addr.arpa
send
EOF
RalfFriedl
  • 3,008
  • 4
  • 12
  • 17
L0g4n
  • 1