:orphan: .. title:: DNS_RESOLVER_MAX_SERVERS .. option:: CONFIG_DNS_RESOLVER_MAX_SERVERS *Number of DNS server addresses* Type: ``int`` Help ==== Max number of DNS servers that we can connect to. Normally one DNS server is enough. Each connection to DNS server will use one network context. Direct dependencies =================== \ :option:`DNS_RESOLVER ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/lib/dns/Kconfig:46`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:89`` → ``subsys/net/lib/Kconfig:8`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Protocols → DNS resolver .. parsed-literal:: config DNS_RESOLVER_MAX_SERVERS int "Number of DNS server addresses" range 1 \ :option:`NET_MAX_CONTEXTS ` default 1 depends on \ :option:`DNS_RESOLVER ` && \ :option:`NETWORKING ` help Max number of DNS servers that we can connect to. Normally one DNS server is enough. Each connection to DNS server will use one network context. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*