Displaying 1 result from an estimated 1 matches for "dns_class_any".
Did you mean:
dns_qclass_any
2016 May 16
0
Possible / probable bug: "net ads dns register" does not remove stale IPv6 AAAA records
...ined system: Ubuntu 16.04 and SAMBA 4.3.9-Ubuntu
I think the guilty code might be here:
https://github.com/samba-team/samba/blob/82801f9ec895deb9536a2b0a4e0ce4b3d5853220/lib/addns/dnsrecord.c#L433
/*
* Delete any existing A records
*/
err = dns_create_delete_record(req, hostname, QTYPE_A, DNS_CLASS_ANY,
&rec);
But I don't see any similar code for cleaning AAAA records. My guess is it's
as simple as adding another function call with QTYPE_AAAA but I'm not a SAMBA
programmer and this is my first time ever looking at SAMBA code...
I also just sent an e-mail regarding th...