1# Private config options for virtual network interface sample app 2 3# Copyright (c) 2021 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6mainmenu "Networking virtual network interface sample application" 7 8config NET_SAMPLE_IFACE2_MY_IPV6_ADDR 9 string "My IPv6 address for second interface" 10 help 11 The value depends on your network setup. 12 13config NET_SAMPLE_IFACE2_MY_IPV4_ADDR 14 string "My IPv4 address for second interface" 15 help 16 The value depends on your network setup. 17 18config NET_SAMPLE_IFACE2_MY_IPV4_NETMASK 19 string "My IPv4 netmask for second interface" 20 default "255.255.255.0" 21 help 22 Static netmask to use if not overridden by DHCP. Use empty value to 23 skip setting static value. 24 25config NET_SAMPLE_IFACE3_MY_IPV6_ADDR 26 string "My IPv6 address for third interface" 27 help 28 The value depends on your network setup. 29 30config NET_SAMPLE_IFACE3_MY_IPV4_ADDR 31 string "My IPv4 address for third interface" 32 help 33 The value depends on your network setup. 34 35config NET_SAMPLE_IFACE3_MY_IPV4_NETMASK 36 string "My IPv4 netmask for third interface" 37 default "255.255.255.0" 38 help 39 Static netmask to use if not overridden by DHCP. Use empty value to 40 skip setting static value. 41 42source "Kconfig.zephyr" 43