1# Private config options for mDNS responder sample app 2 3# Copyright (c) 2023 NordicNordic Semiconductor ASA 4# SPDX-License-Identifier: Apache-2.0 5 6mainmenu "Networking mDNS responder 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 help 21 The value depends on your network setup. 22 23config NET_SAMPLE_IFACE2_VLAN_TAG 24 int "VLAN tag for second interface" 25 default 100 26 range 0 4094 27 depends on NET_VLAN 28 help 29 Set VLAN (virtual LAN) tag (id) that is used in the sample 30 application. 31 32config NET_SAMPLE_IFACE3_MY_IPV6_ADDR 33 string "My IPv6 address for third interface" 34 help 35 The value depends on your network setup. 36 37config NET_SAMPLE_IFACE3_MY_IPV4_ADDR 38 string "My IPv4 address for third interface" 39 help 40 The value depends on your network setup. 41 42config NET_SAMPLE_IFACE3_MY_IPV4_NETMASK 43 string "My IPv4 netmask for third interface" 44 help 45 The value depends on your network setup. 46 47config NET_SAMPLE_IFACE3_VLAN_TAG 48 int "VLAN tag for third interface" 49 default 200 50 range 0 4094 51 depends on NET_VLAN 52 help 53 Set VLAN (virtual LAN) tag (id) that is used in the sample 54 application. 55 56source "Kconfig.zephyr" 57