:orphan: .. title:: MDNS_RESPONDER .. option:: CONFIG_MDNS_RESPONDER *mDNS responder* Type: ``bool`` Help ==== This option enables the mDNS responder support for Zephyr. It will listen well-known address ff02::fb and 224.0.0.251. Currently this only returns IP address information. You must set CONFIG_NET_HOSTNAME to some meaningful value and then mDNS will start to respond to .local mDNS queries. See RFC 6762 for more details about mDNS. Direct dependencies =================== \ :option:`NET_HOSTNAME_ENABLE ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :option:`NET_IPV6_MLD ` if \ :option:`NET_IPV6 ` Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/lib/dns/Kconfig:116`` 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 .. parsed-literal:: config MDNS_RESPONDER bool "mDNS responder" select \ :option:`NET_IPV6_MLD ` if \ :option:`NET_IPV6 ` depends on \ :option:`NET_HOSTNAME_ENABLE ` && \ :option:`NETWORKING ` help This option enables the mDNS responder support for Zephyr. It will listen well-known address ff02::fb and 224.0.0.251. Currently this only returns IP address information. You must set CONFIG_NET_HOSTNAME to some meaningful value and then mDNS will start to respond to .local mDNS queries. See RFC 6762 for more details about mDNS. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*