From 96f5ae8cdcdfd0a7dcaea498ce4410882e041e1c Mon Sep 17 00:00:00 2001 From: Georgios Kafanas Date: Wed, 13 Nov 2024 23:54:41 +0100 Subject: [PATCH] [BUGFIX] Fix typo in the port forwarding example descriptions --- docs/connect/ssh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/connect/ssh.md b/docs/connect/ssh.md index 57f3e1de..f7eaafb0 100644 --- a/docs/connect/ssh.md +++ b/docs/connect/ssh.md @@ -541,7 +541,7 @@ In the `` option you can use the node IP address or the node name. #### Port forwarding over SSH jumps -You can combine the jump command with other options, such as [port forwarding](#ssh-port-forwarding), for instance to access from you local machine a web server running in a compute node. Assume for instance that you have a server running in `iris-014` and listens at the IP `127.0.0.1` and port `2222`, and that you would like to forward the remote port `2222` to the `2222` port of you local machine. The, call the port forwarding command with a jump though the login node: +You can combine the jump command with other options, such as [port forwarding](#ssh-port-forwarding), for instance to access from you local machine a web server running in a compute node. Assume for instance that you have a server running in `iris-014` and listens at the IP `127.0.0.1` and port `2222`, and that you would like to forward the remote port `2222` to the `1111` port of you local machine. The, call the port forwarding command with a jump though the login node: ```bash ssh -J iris-cluster -L 1111:127.0.0.1:2222 @iris-014