:orphan: .. title:: NET_ARP_GRATUITOUS .. option:: CONFIG_NET_ARP_GRATUITOUS *Support gratuitous ARP requests/replies.* Type: ``bool`` Help ==== Gratuitous in this case means a ARP request or reply that is not normally needed according to the ARP specification but could be used in some cases. A gratuitous ARP request is a ARP request packet where the source and destination IP are both set to the IP of the machine issuing the packet and the destination MAC is the broadcast address ff:ff:ff:ff:ff:ff. Ordinarily, no reply packet will occur. A gratuitous ARP reply is a reply to which no request has been made. Direct dependencies =================== \ :option:`NET_ARP ` && \ :option:`NET_L2_ETHERNET ` && \ :option:`NETWORKING ` *(Includes any dependencies from if's and menus.)* Defaults ======== - "y" if \ :option:`NET_ARP ` && \ :option:`NET_L2_ETHERNET ` && \ :option:`NETWORKING ` Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/l2/ethernet/Kconfig:58`` Included via ``Kconfig:10`` → ``Kconfig.zephyr:39`` → ``subsys/Kconfig:24`` → ``subsys/net/Kconfig:80`` → ``subsys/net/l2/Kconfig:72`` Menu path: (top menu) → Networking → Link layer and IP networking support → Link layer options → Enable Ethernet support → Enable ARP .. parsed-literal:: config NET_ARP_GRATUITOUS bool prompt "Support gratuitous ARP requests/replies." if \ :option:`NET_ARP ` && \ :option:`NET_L2_ETHERNET ` && \ :option:`NETWORKING ` default "y" if \ :option:`NET_ARP ` && \ :option:`NET_L2_ETHERNET ` && \ :option:`NETWORKING ` depends on \ :option:`NET_ARP ` && \ :option:`NET_L2_ETHERNET ` && \ :option:`NETWORKING ` help Gratuitous in this case means a ARP request or reply that is not normally needed according to the ARP specification but could be used in some cases. A gratuitous ARP request is a ARP request packet where the source and destination IP are both set to the IP of the machine issuing the packet and the destination MAC is the broadcast address ff:ff:ff:ff:ff:ff. Ordinarily, no reply packet will occur. A gratuitous ARP reply is a reply to which no request has been made. *(Definitions include propagated dependencies, including from if's and menus.)*