1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 02:57:58 +01:00
tldr/pages/common/telnet.md
2016-01-08 09:38:59 +01:00

312 B

telnet

Telnet is used to connect to a specified port of a host.

  • Telnet to a certain port:

telnet {{ip_address}} {{port}}

  • To exit a telnet session:

quit

  • Default escape character:

CTRL + ]

  • Specify an escape character (x is the escape character):

telnet -e x {{ip_address}} {{port}}