CONFIG_TELNET_CONSOLE

Enable a super basic telnet console service

Type: bool

Help

This option enables telnet as a network console service. It is for now a very basic implementation of the telnet protocol. Currently, it is basically just a redirection of the Zephyr console through TCP. It nicely works along with another console driver (like uart), twist being that it will take over the output if only a successful connection to its port is done.

Direct dependencies

CONSOLE

(Includes any dependencies from if’s and menus.)

Defaults

No defaults. Implicitly defaults to n.

Symbols selected by this symbol

Kconfig definition

At drivers/console/Kconfig.telnet:9

Included via Kconfig:10Kconfig.zephyr:29drivers/Kconfig:16drivers/console/Kconfig:305

Menu path: (top menu) → Device Drivers → Console drivers

menuconfig TELNET_CONSOLE
    bool
    prompt "Enable a super basic telnet console service" if CONSOLE
    select NETWORKING if CONSOLE
    select NET_TCP if CONSOLE
    depends on CONSOLE
    help
      This option enables telnet as a network console service. It is for
      now a very basic implementation of the telnet protocol. Currently,
      it is basically just a redirection of the Zephyr console through TCP.
      It nicely works along with another console driver (like uart), twist
      being that it will take over the output if only a successful
      connection to its port is done.

(Definitions include propagated dependencies, including from if’s and menus.)