:orphan: .. title:: CONFIG_SHELL_TELNET_PORT .. kconfig:: CONFIG_SHELL_TELNET_PORT CONFIG_SHELL_TELNET_PORT ######################## *Telnet port number* Type: ``int`` Help ==== .. code-block:: none This option is used to configure on which port telnet is going to be bound. Direct dependencies =================== \ :kconfig:`SHELL_BACKEND_TELNET ` && \ :kconfig:`SHELL_BACKENDS ` && \ :kconfig:`SHELL ` *(Includes any dependencies from ifs and menus.)* Default ======= - 23 Kconfig definition ================== At ``/shell/Kconfig.backends:206`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:45`` → ``/shell/Kconfig:18`` Menu path: (Top) → Sub Systems and OS Services → Shell → Enable shell backends → Enable TELNET backend. .. code-block:: kconfig config SHELL_TELNET_PORT int "Telnet port number" default 23 depends on SHELL_BACKEND_TELNET && SHELL_BACKENDS && SHELL help This option is used to configure on which port telnet is going to be bound. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*