:orphan: .. title:: CONFIG_PPP_MAC_ADDR .. kconfig:: CONFIG_PPP_MAC_ADDR CONFIG_PPP_MAC_ADDR ################### *MAC address for the interface* Type: ``string`` Help ==== .. code-block:: none Specify a MAC address for the PPP interface in the form of six hex 8-bit chars separated by colons (e.g.: aa:33:cc:22:e2:c0). The default is an empty string, which means the code will make 00:00:5E:00:53:XX, where XX will be random. Direct dependencies =================== \ :kconfig:`NET_PPP ` && \ :kconfig:`NET_DRIVERS ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to the empty string. Kconfig definition ================== At ``/net/Kconfig:71`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:24`` Menu path: (Top) → Device Drivers → Network Drivers → Point-to-point (PPP) UART based driver .. code-block:: kconfig config PPP_MAC_ADDR string "MAC address for the interface" depends on NET_PPP && NET_DRIVERS help Specify a MAC address for the PPP interface in the form of six hex 8-bit chars separated by colons (e.g.: aa:33:cc:22:e2:c0). The default is an empty string, which means the code will make 00:00:5E:00:53:XX, where XX will be random. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*