1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 01:18:00 +01:00
tldr/pages/common/telnet.md

20 lines
310 B
Markdown
Raw Normal View History

2014-03-03 11:09:39 +01:00
# telnet
> Telnet is used to connect to a specified port of a host.
2014-03-03 11:09:39 +01:00
- Telnet to a certain port:
2014-03-03 11:09:39 +01:00
`telnet {{ip_address}} {{port}}`
- To exit a telnet session:
2014-03-03 11:09:39 +01:00
`quit`
- Default escape character:
2014-03-03 11:09:39 +01:00
2016-01-13 11:12:44 +01:00
`CTRL + ]`
2014-03-03 11:09:39 +01:00
- Specify an escape character (x is the escape character):
2014-03-03 11:09:39 +01:00
`telnet -e x {{ip_address}} {{port}}`