:orphan: .. title:: SHELL_TELNET_PORT .. option:: CONFIG_SHELL_TELNET_PORT *Telnet port number* Type: ``int`` Help ==== This option is used to configure on which port telnet is going to be bound. Direct dependencies =================== \ :option:`SHELL_BACKEND_TELNET ` && \ :option:`SHELL_BACKENDS ` && \ :option:`SHELL ` *(Includes any dependencies from ifs and menus.)* Default ======= - 23 Kconfig definition ================== .. highlight:: kconfig At ``subsys/shell/Kconfig.backends:209`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:41`` → ``subsys/shell/Kconfig:18`` Menu path: (Top) → Sub Systems and OS Services → Shell → Enable shell backends → Enable TELNET backend. .. parsed-literal:: config SHELL_TELNET_PORT int "Telnet port number" default 23 depends on \ :option:`SHELL_BACKEND_TELNET ` && \ :option:`SHELL_BACKENDS ` && \ :option:`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.)*