1# Copyright (c) 2024 Nordic Semiconductor
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig NET_PSEUDO_IFACE
5	bool "Pseudo network interface a.k.a any interface"
6	depends on NET_L2_DUMMY
7	select NET_L2_VIRTUAL
8	help
9	  This implements a pseudo network interface that does nothing
10	  itself. It can be used for example to hook virtual interfaces
11	  on top of it that can act as a network packet capture handlers.
12	  The option will create an "any" network interface which acts
13	  as a packet sink.
14
15if NET_PSEUDO_IFACE
16
17module = NET_PSEUDO_IFACE
18module-dep = NET_LOG
19module-str = Log level for pseudo network interface
20module-help = Enables pseudo interface to output debug messages.
21source "subsys/net/Kconfig.template.log_config.net"
22
23endif # NET_PSEUDO_IFACE
24