:orphan: .. title:: CONFIG_NET_ARP .. kconfig:: CONFIG_NET_ARP CONFIG_NET_ARP ############## *Enable ARP* Type: ``bool`` Help ==== .. code-block:: none Enable ARP support. This is necessary on hardware that requires it to get IPv4 working (like Ethernet devices). Direct dependencies =================== \ :kconfig:`NET_IPV4 ` && \ :kconfig:`NET_L2_ETHERNET ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/net/l2/ethernet/Kconfig:40`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:85`` → ``/net/l2/Kconfig:71`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Link layer options → Enable Ethernet support .. code-block:: kconfig config NET_ARP bool "Enable ARP" default y depends on NET_IPV4 && NET_L2_ETHERNET && NETWORKING help Enable ARP support. This is necessary on hardware that requires it to get IPv4 working (like Ethernet devices). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*