From 1225ca5cebd724f98e1b098e809e4d56ec43aa68 Mon Sep 17 00:00:00 2001 From: jhauga Date: Mon, 24 Nov 2025 19:58:24 -0500 Subject: [PATCH 1/6] putty: add page --- pages/common/putty.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages/common/putty.md diff --git a/pages/common/putty.md b/pages/common/putty.md new file mode 100644 index 00000000000000..9bdfadd6423cd5 --- /dev/null +++ b/pages/common/putty.md @@ -0,0 +1,37 @@ +# putty + +> SSH, Telnet, and Rlogin client for connecting to remote servers. +> Note: On Linux, the native `ssh` client is often more convenient. PuTTY is more commonly used on Windows. +> More information: . + +- Connect to a remote host via SSH: + +`putty -ssh {{username}}@{{hostname_or_ip}}` + +- Connect to a remote host on a specific port: + +`putty -ssh {{username}}@{{hostname_or_ip}} -P {{port}}` + +- Load a saved session: + +`putty -load {{session_name}}` + +- Connect with a private key for authentication: + +`putty -ssh {{username}}@{{hostname_or_ip}} -i {{path/to/private_key.ppk}}` + +- Connect via Telnet: + +`putty -telnet {{hostname_or_ip}}` + +- Enable X11 forwarding: + +`putty -ssh {{username}}@{{hostname_or_ip}} -X` + +- Set up local port forwarding: + +`putty -ssh {{username}}@{{hostname_or_ip}} -L {{local_port}}:{{destination_host}}:{{destination_port}}` + +- Display help: + +`putty -help` From 4b04b0c97acd953d442ef1b63698765453c02546 Mon Sep 17 00:00:00 2001 From: John Haugabook Date: Mon, 24 Nov 2025 20:04:32 -0500 Subject: [PATCH 2/6] putty: add page --- pages/{common => windows}/putty.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pages/{common => windows}/putty.md (100%) diff --git a/pages/common/putty.md b/pages/windows/putty.md similarity index 100% rename from pages/common/putty.md rename to pages/windows/putty.md From 0a00be595fb1f91b030815301aec34e82d6e03ef Mon Sep 17 00:00:00 2001 From: John Haugabook Date: Mon, 24 Nov 2025 20:39:19 -0500 Subject: [PATCH 3/6] putty: add page Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/windows/putty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/windows/putty.md b/pages/windows/putty.md index 9bdfadd6423cd5..657dce70924b84 100644 --- a/pages/windows/putty.md +++ b/pages/windows/putty.md @@ -2,7 +2,7 @@ > SSH, Telnet, and Rlogin client for connecting to remote servers. > Note: On Linux, the native `ssh` client is often more convenient. PuTTY is more commonly used on Windows. -> More information: . +> More information: . - Connect to a remote host via SSH: From 6efbd513c9dd593ed10a062086b71e10ccbbea4e Mon Sep 17 00:00:00 2001 From: John Haugabook Date: Tue, 25 Nov 2025 11:46:50 -0500 Subject: [PATCH 4/6] putty: add page Co-authored-by: Meinard Francisco <44516102+znarfm@users.noreply.github.com> --- pages/windows/putty.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/windows/putty.md b/pages/windows/putty.md index 657dce70924b84..aaf144a3382e96 100644 --- a/pages/windows/putty.md +++ b/pages/windows/putty.md @@ -8,7 +8,7 @@ `putty -ssh {{username}}@{{hostname_or_ip}}` -- Connect to a remote host on a specific port: +- Connect to a remote host on a specific [P]ort: `putty -ssh {{username}}@{{hostname_or_ip}} -P {{port}}` @@ -24,11 +24,11 @@ `putty -telnet {{hostname_or_ip}}` -- Enable X11 forwarding: +- Enable [X]11 forwarding: `putty -ssh {{username}}@{{hostname_or_ip}} -X` -- Set up local port forwarding: +- Set up [L]ocal port forwarding: `putty -ssh {{username}}@{{hostname_or_ip}} -L {{local_port}}:{{destination_host}}:{{destination_port}}` From 22981c14e44c44f9c3f5ca2e0ff7c9fc00b5bfdb Mon Sep 17 00:00:00 2001 From: John Haugabook Date: Tue, 25 Nov 2025 11:48:10 -0500 Subject: [PATCH 5/6] putty: add page --- pages/{windows => common}/putty.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pages/{windows => common}/putty.md (100%) diff --git a/pages/windows/putty.md b/pages/common/putty.md similarity index 100% rename from pages/windows/putty.md rename to pages/common/putty.md From d678b2b5b73bdaec2bc1cc657ceada02c3342035 Mon Sep 17 00:00:00 2001 From: John Haugabook Date: Wed, 26 Nov 2025 15:14:17 -0500 Subject: [PATCH 6/6] putty: add page --- pages/common/putty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/putty.md b/pages/common/putty.md index aaf144a3382e96..f7e1771b69dac2 100644 --- a/pages/common/putty.md +++ b/pages/common/putty.md @@ -2,7 +2,7 @@ > SSH, Telnet, and Rlogin client for connecting to remote servers. > Note: On Linux, the native `ssh` client is often more convenient. PuTTY is more commonly used on Windows. -> More information: . +> More information: . - Connect to a remote host via SSH: