Hi, this is too late reply. In message <[email protected]> on Tue, 24 Apr 2018 07:30:04 +0200, Frank Kardel <[email protected]> wrote: > There are also 2 other observations with a 8.99.12 userland: > > named has now trouble with interface scanning. > > 2018-04-24T05:13:34.522295+00:00 gateway named 345 - - automatic > interface scanning terminated: not enough free resources I found it on NetBSD 8.0_RC1 machine with both base named and pkgsrc/net/bind910.
Below change seems to fix this problem although 16284 is something large size without exact reason. :-) -- Takahiro Kambe <[email protected]> / <[email protected]> --- bin/named/interfacemgr.c.orig 2018-03-08 20:55:52.000000000 +0000 +++ bin/named/interfacemgr.c @@ -84,7 +84,7 @@ struct ns_interfacemgr { #ifdef USE_ROUTE_SOCKET isc_task_t * task; isc_socket_t * route; - unsigned char buf[2048]; + unsigned char buf[16384]; #endif };
