1# Private config options for capture sample app
2
3# Copyright (c) 2024 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "Networking capture sample application"
7
8config NET_SAMPLE_TUNNEL_PEER_ADDR
9	string "Remote IP address of the tunnel interface"
10	depends on NET_L2_IPIP
11	help
12	  Use overlay-tunnel.conf to setup the tunnel support.
13
14config NET_SAMPLE_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
20source "Kconfig.zephyr"
21