:orphan: .. title:: NET_ARP .. option:: CONFIG_NET_ARP *Enable ARP* Type: ``bool`` Help ==== Enable ARP support. This is necessary on hardware that requires it to get IPv4 working (like Ethernet devices). Direct dependencies =================== \ :option:`NET_IPV4 ` && \ :option:`NET_L2_ETHERNET ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/l2/ethernet/Kconfig:40`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:85`` → ``subsys/net/l2/Kconfig:69`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Link layer options → Enable Ethernet support .. parsed-literal:: config NET_ARP bool "Enable ARP" default y depends on \ :option:`NET_IPV4 ` && \ :option:`NET_L2_ETHERNET ` && \ :option:`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.)*