tldr/pages/common/telnet.md

20 lines
312 B
Markdown
Raw Normal View History

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