1# Private config options for VLAN sample app
2
3# Copyright (c) 2018 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "Networking VLAN sample application"
7
8config SAMPLE_VLAN_TAG
9	int "Virtual lan tag used in VLAN sample app"
10	default 100
11	range 0 4094
12	depends on NET_VLAN
13	help
14	  Set virtual lan tag (id) that is used in VLAN sample application.
15
16config SAMPLE_VLAN_TAG_2
17	int "Second VLAN tag used in VLAN sample app"
18	default 200
19	range 0 4094
20	depends on NET_VLAN
21	help
22	  Set virtual lan tag (id) that is used in VLAN sample application.
23
24config SAMPLE_IPV6_ADDR_2
25	string "My IPv6 address for second interface"
26	help
27	  The value depends on your network setup.
28
29config SAMPLE_IPV4_ADDR_2
30	string "My IPv4 address for second interface"
31	help
32	  The value depends on your network setup.
33
34
35source "Kconfig.zephyr"
36