1# Private config options for virtual network interface test app
2
3# Copyright (c) 2021 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "Virtual network interface test application"
7
8config NET_TEST_TUNNEL_PEER_ADDR
9	string "Remote IP address of the tunnel interface"
10	depends on NET_L2_IPIP
11	help
12	  The value depends on your network setup.
13
14config NET_TEST_TUNNEL_MY_ADDR
15	string "My address for tunnel interface"
16	depends on NET_L2_IPIP
17	help
18	  The value depends on your network setup.
19
20config NET_TEST_TUNNEL_NAME
21	string "Name of the tunnel interface"
22	depends on NET_L2_IPIP
23	help
24	  The value depends on your network setup.
25
26source "Kconfig.zephyr"
27