]> git.ipfire.org Git - thirdparty/bind9.git/commit
fix: doc: nsupdate does not handle zero length RDATA well
authorMark Andrews <marka@isc.org>
Thu, 9 Apr 2026 00:33:41 +0000 (10:33 +1000)
committerMark Andrews <marka@isc.org>
Thu, 9 Apr 2026 00:33:41 +0000 (10:33 +1000)
commit249fb48758bd752e2039ff381d7b28e7ded965c9
tree0e8fe2955176afa1db499b95bdf03fff87e58961
parentd6239a2c7629bf0c5735cfae2086ffaa26efa1e8
parentf45762a5beea8dd07604e49ba225bebe09f9f970
fix: doc: nsupdate does not handle zero length RDATA well

Nsupdate does not distinguish between a non-existing RDATA field
and an empty RDATA field when determining which action is desired
when the RDATA field is empty. This only affects a few data types,
like APL, which allow an empty RDATA field.  Document a workaround
of using the '\# 0' form for entering these specific records. e.g.

    # delete the APL RRset
    update delete IN APL
    # delete the APL record with a zero length rdata
    update delete IN APL \# 0

Closes #5835

Merge branch '5835-nsupdate-doc-zero-length-rdata-how-to' into 'main'

See merge request isc-projects/bind9!11775