zephyr/tests/net/virtual/Kconfig
Jukka Rissanen 8ea7eb9e51 tests: net: virtual: Add unit tests for checking tunneling
Add tests to verify that IP tunneling works as expected.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2021-03-29 07:40:24 -04:00

27 lines
672 B
Plaintext

# Private config options for virtual network interface test app
# Copyright (c) 2021 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
mainmenu "Virtual network interface test application"
config NET_TEST_TUNNEL_PEER_ADDR
string "Remote IP address of the tunnel interface"
depends on NET_L2_IPIP
help
The value depends on your network setup.
config NET_TEST_TUNNEL_MY_ADDR
string "My address for tunnel interface"
depends on NET_L2_IPIP
help
The value depends on your network setup.
config NET_TEST_TUNNEL_NAME
string "Name of the tunnel interface"
depends on NET_L2_IPIP
help
The value depends on your network setup.
source "Kconfig.zephyr"