:orphan: .. title:: CONFIG_NET_CONFIG_MY_IPV4_NETMASK .. kconfig:: CONFIG_NET_CONFIG_MY_IPV4_NETMASK CONFIG_NET_CONFIG_MY_IPV4_NETMASK ################################# *My IPv4 netmask* Type: ``string`` Help ==== .. code-block:: none Static netmask to use if not overridden by DHCP. Use empty value to skip setting static value. Direct dependencies =================== \ :kconfig:`NET_IPV4 ` && \ :kconfig:`NET_CONFIG_SETTINGS ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - "255.255.255.0" Kconfig definition ================== At ``/net/lib/config/Kconfig:97`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:89`` → ``/net/lib/Kconfig:28`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Libraries → Set network settings for applications .. code-block:: kconfig config NET_CONFIG_MY_IPV4_NETMASK string "My IPv4 netmask" default "255.255.255.0" depends on NET_IPV4 && NET_CONFIG_SETTINGS && NETWORKING help Static netmask to use if not overridden by DHCP. Use empty value to skip setting static value. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*