1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 19:45:09 +02:00
tldr/pages/common/telnet.md
2016-01-13 11:12:44 +01:00

19 lines
310 B
Markdown

# 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}}`