:orphan: .. title:: CONFIG_NET_ARP_GRATUITOUS .. kconfig:: CONFIG_NET_ARP_GRATUITOUS CONFIG_NET_ARP_GRATUITOUS ######################### *Support gratuitous ARP requests/replies.* Type: ``bool`` Help ==== .. code-block:: none 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 =================== \ :kconfig:`NET_ARP ` && \ :kconfig:`NET_L2_ETHERNET ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/net/l2/ethernet/Kconfig:55`` 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 → Enable ARP .. code-block:: kconfig config NET_ARP_GRATUITOUS bool "Support gratuitous ARP requests/replies." default y depends on NET_ARP && NET_L2_ETHERNET && 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. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*