1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/telnet.md

20 lines
307 B
Markdown
Raw Normal View History

2014-03-03 21:09:39 +11:00
# 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}}`