Linux – using nsupdate to delete PTR record by hostname

domain-name-systemlinuxnsupdate

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.

Best Answer

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.

Related Topic