mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 15:17:58 +01:00
19 lines
307 B
Markdown
19 lines
307 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}}`
|