mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 19:45:09 +02:00
19 lines
310 B
Markdown
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}}`
|