The latest development version of this page may be more current than this released 2.7.5 version.

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 <hostname>.local mDNS queries.
See RFC 6762 for more details about mDNS.

Direct dependencies

NET_HOSTNAME_ENABLE && NETWORKING

(Includes any dependencies from ifs and menus.)

Defaults

No defaults. Implicitly defaults to n.

Symbols selected by this symbol

Kconfig definition

At subsys/net/lib/dns/Kconfig:125

Included via Kconfig:8Kconfig.zephyr:44subsys/Kconfig:39subsys/net/Kconfig:91subsys/net/lib/Kconfig:8

Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Protocols

config MDNS_RESPONDER
    bool "mDNS responder"
    select NET_IPV6_MLD if NET_IPV6
    depends on NET_HOSTNAME_ENABLE && 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 <hostname>.local mDNS queries.
      See RFC 6762 for more details about mDNS.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)