1# 2# Copyright (c) 2025 Ezurio 3# 4# SPDX-License-Identifier: Apache-2.0 5# 6 7config NET_SAMPLE_COMMON_WAIT_DNS_SERVER_ADDITION 8 bool "Wait DNS server addition before considering connection to be up" 9 depends on MODEM_HL7800 && !DNS_SERVER_IP_ADDRESSES 10 help 11 Make sure we get DNS server addresses from the network 12 before considering the connection to be up. 13 14config NET_SAMPLE_COMMON_VLAN_SETUP_1 15 string "VLAN setup for the 1st VLAN interface" 16 default "" 17 depends on NET_VLAN 18 help 19 This can setup the first VLAN network interface. 20 The format of the string looks like this: 21 <VLAN-tag>;<ip-address/mask-len>,... 22 Example: 23 100;198.51.100.1/24,2001:db8:100::1/64 24 The VLAN tag can have values between 0 and 4094. 25 There can be multiple IP addresses specified, and the 26 code tries to apply them all to this interface. 27 28config NET_SAMPLE_COMMON_VLAN_SETUP_2 29 string "VLAN setup for the 2nd VLAN interface" 30 default "" 31 depends on NET_VLAN 32 help 33 This can setup the first VLAN network interface. 34 The format of the string looks like this: 35 <VLAN-tag>;<ip-address/mask-len>,... 36 Example: 37 200;203.0.113.1/24,2001:db8:200::1/64 38 The VLAN tag can have values between 0 and 4094. 39 There can be multiple IP addresses specified, and the 40 code tries to apply them all to this interface. 41 42config NET_SAMPLE_COMMON_TUNNEL_PEER_ADDR 43 string "Remote IP address of the tunnel interface" 44 depends on NET_L2_IPIP 45 help 46 Use overlay-tunnel.conf to setup the tunnel support. 47 48config NET_SAMPLE_COMMON_TUNNEL_MY_ADDR 49 string "My address for tunnel interface" 50 depends on NET_L2_IPIP 51 help 52 The value depends on your network setup. 53