Skip to content

Commit 0019ace

Browse files
jhaugaManagorznarfm
authored
putty: add page (#19600)
* putty: add page * putty: add page * putty: add page Co-authored-by: Managor <[email protected]> * putty: add page Co-authored-by: Meinard Francisco <[email protected]> * putty: add page * putty: add page --------- Co-authored-by: Managor <[email protected]> Co-authored-by: Meinard Francisco <[email protected]>
1 parent efeabcb commit 0019ace

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

pages/common/putty.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# putty
2+
3+
> SSH, Telnet, and Rlogin client for connecting to remote servers.
4+
> Note: On Linux, the native `ssh` client is often more convenient. PuTTY is more commonly used on Windows.
5+
> More information: <https://the.earth.li/~sgtatham/putty/latest/htmldoc/Chapter3.html#using-cmdline>.
6+
7+
- Connect to a remote host via SSH:
8+
9+
`putty -ssh {{username}}@{{hostname_or_ip}}`
10+
11+
- Connect to a remote host on a specific [P]ort:
12+
13+
`putty -ssh {{username}}@{{hostname_or_ip}} -P {{port}}`
14+
15+
- Load a saved session:
16+
17+
`putty -load {{session_name}}`
18+
19+
- Connect with a private key for authentication:
20+
21+
`putty -ssh {{username}}@{{hostname_or_ip}} -i {{path/to/private_key.ppk}}`
22+
23+
- Connect via Telnet:
24+
25+
`putty -telnet {{hostname_or_ip}}`
26+
27+
- Enable [X]11 forwarding:
28+
29+
`putty -ssh {{username}}@{{hostname_or_ip}} -X`
30+
31+
- Set up [L]ocal port forwarding:
32+
33+
`putty -ssh {{username}}@{{hostname_or_ip}} -L {{local_port}}:{{destination_host}}:{{destination_port}}`
34+
35+
- Display help:
36+
37+
`putty -help`

0 commit comments

Comments
 (0)