zephyr/samples/net/virtual/Kconfig
Jukka Rissanen 68835f1006 samples: net: virtual: Simple app for creating virtual interfaces
The app does not do much but shows how virtual network interfaces
support can be used.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2021-03-29 07:40:24 -04:00

43 lines
1.2 KiB
Plaintext

# Private config options for virtual network interface sample app
# Copyright (c) 2021 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
mainmenu "Networking virtual network interface sample application"
config NET_SAMPLE_IFACE2_MY_IPV6_ADDR
string "My IPv6 address for second interface"
help
The value depends on your network setup.
config NET_SAMPLE_IFACE2_MY_IPV4_ADDR
string "My IPv4 address for second interface"
help
The value depends on your network setup.
config NET_SAMPLE_IFACE2_MY_IPV4_NETMASK
string "My IPv4 netmask for second interface"
default "255.255.255.0"
help
Static netmask to use if not overridden by DHCP. Use empty value to
skip setting static value.
config NET_SAMPLE_IFACE3_MY_IPV6_ADDR
string "My IPv6 address for third interface"
help
The value depends on your network setup.
config NET_SAMPLE_IFACE3_MY_IPV4_ADDR
string "My IPv4 address for third interface"
help
The value depends on your network setup.
config NET_SAMPLE_IFACE3_MY_IPV4_NETMASK
string "My IPv4 netmask for third interface"
default "255.255.255.0"
help
Static netmask to use if not overridden by DHCP. Use empty value to
skip setting static value.
source "Kconfig.zephyr"