1# Private config options for LLDP sample app 2 3# Copyright (c) 2018 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6# This sample application will have three network interfaces. 7 8mainmenu "LLDP sample application" 9 10source "Kconfig.zephyr" 11 12if NET_LLDP 13 14config NET_SAMPLE_IFACE2_MY_IPV6_ADDR 15 string "My IPv6 address for second interface" 16 help 17 The value depends on your network setup. 18 19config NET_SAMPLE_IFACE2_MY_IPV4_ADDR 20 string "My IPv4 address for second interface" 21 help 22 The value depends on your network setup. 23 24config NET_SAMPLE_IFACE2_VLAN_TAG 25 int "VLAN tag for second interface" 26 default 100 27 range 0 4094 28 depends on NET_VLAN 29 help 30 Set VLAN (virtual LAN) tag (id) that is used in the sample 31 application. 32 33config NET_SAMPLE_IFACE3_MY_IPV6_ADDR 34 string "My IPv6 address for third interface" 35 help 36 The value depends on your network setup. 37 38config NET_SAMPLE_IFACE3_MY_IPV4_ADDR 39 string "My IPv4 address for third interface" 40 help 41 The value depends on your network setup. 42 43config NET_SAMPLE_IFACE3_VLAN_TAG 44 int "VLAN tag for third interface" 45 default 200 46 range 0 4094 47 depends on NET_VLAN 48 help 49 Set VLAN (virtual LAN) tag (id) that is used in the sample 50 application. 51 52endif 53