On 2024-01-13 01:13 UTC, Klemens Nanni <[email protected]> wrote:
> The last unwind.conf(5) EXAMPLE does not work for me unless I remove all
> three of "DoT", "oDoT-forwarder" and "forwarder" from preferences; moving
> them to the end or "autoconf" to the front does not work.
What is "unwindctl status" showing?
setup_query in resolver.c has this:
find_force(&resolver_conf->force, query_imsg->qname, &res);
if (res != NULL && res->state != DEAD && res->state != UNKNOWN) {
rq->res_pref.len = 1;
rq->res_pref.types[0] = res->type;
} else if (sort_resolver_types(&rq->res_pref) == -1) {
log_warn("mergesort");
free(rq->query_imsg);
free(rq);
return;
}
Which suggests it will only use the force resolver and not consider
anything else. Unless the force resolver is not working. I.e. dead or unknown.
I suspect it's unknown.
--
In my defence, I have been left unsupervised.