:orphan: .. title:: CONFIG_NET_SLIP_TAP .. kconfig:: CONFIG_NET_SLIP_TAP CONFIG_NET_SLIP_TAP ################### *TAP SLIP driver* Type: ``bool`` Help ==== .. code-block:: none SLIP TAP support is necessary when testing with QEMU. The host needs to have tunslip6 with TAP support running in order to communicate via the SLIP driver. See net-tools project at https://github.com/zephyrproject-rtos/net-tools for more details. Direct dependencies =================== \ :kconfig:`NET_QEMU_SLIP ` && \ :kconfig:`NET_NATIVE ` && !\ :kconfig:`NET_RAW_MODE ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - y if \ :kconfig:`QEMU_TARGET ` && !\ :kconfig:`NET_TEST ` && !\ :kconfig:`NET_L2_BT ` Symbols selected by this symbol =============================== - \ :kconfig:`SLIP ` - \ :kconfig:`UART_PIPE ` - \ :kconfig:`UART_INTERRUPT_DRIVEN ` - \ :kconfig:`SLIP_TAP ` Kconfig definition ================== At ``/net/ip/Kconfig:588`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:87`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → IP stack .. code-block:: kconfig config NET_SLIP_TAP bool "TAP SLIP driver" default y if QEMU_TARGET && !NET_TEST && !NET_L2_BT select SLIP select UART_PIPE select UART_INTERRUPT_DRIVEN select SLIP_TAP depends on NET_QEMU_SLIP && NET_NATIVE && !NET_RAW_MODE && NETWORKING help SLIP TAP support is necessary when testing with QEMU. The host needs to have tunslip6 with TAP support running in order to communicate via the SLIP driver. See net-tools project at https://github.com/zephyrproject-rtos/net-tools for more details. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*