[Samba] FSMO DC giving curious log output
Marc Muehlfeld
mmuehlfeld at samba.org
Sun Feb 21 18:30:43 UTC 2016
Hello Matthew,
Am 19.02.2016 um 18:46 schrieb Matthew Delfino:
> Feb 19 09:56:48 dc00 samba[4552]: [2016/02/19 09:56:48.527183, 0] ../source4/dns_server/dns_update.c:426(handle_one_update)
> Feb 19 09:56:48 dc00 samba[4552]: Can't handle updates of type 255 yet
>
> DNS is Samba Internal, not BIND-DLZ.
The internal DNS doesn't support all types of DSN records at the moment.
source4/dns_server/dns_update.c:
switch (update->rr_type) {
case DNS_QTYPE_A:
case DNS_QTYPE_NS:
case DNS_QTYPE_CNAME:
case DNS_QTYPE_SOA:
case DNS_QTYPE_PTR:
case DNS_QTYPE_MX:
case DNS_QTYPE_AAAA:
case DNS_QTYPE_SRV:
case DNS_QTYPE_TXT:
break;
default:
DEBUG(0, ("Can't handle updates of type %u yet\n",
update->rr_type));
return DNS_ERR(NOT_IMPLEMENTED);
}
Any idea what application requests that type? Maybe you can capture the
traffic with tcpdump, to get a clue.
Regards,
Marc
More information about the samba
mailing list