From e54d423dd6135d864141f6c0b064151151814307 Mon Sep 17 00:00:00 2001 From: cvivek503 <30835648+cvivek503@users.noreply.github.com> Date: Sat, 27 Oct 2018 00:50:21 +0530 Subject: [PATCH] Fix(guide): Add the description for connecting to a custom port --- guide/english/bash/bash-ssh/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/guide/english/bash/bash-ssh/index.md b/guide/english/bash/bash-ssh/index.md index 97a808bec3..7e935e1609 100644 --- a/guide/english/bash/bash-ssh/index.md +++ b/guide/english/bash/bash-ssh/index.md @@ -4,7 +4,11 @@ title: Bash ssh ## Bash command: ssh -**Used to connect to a remote computer**, for example `ssh 123.456.789.012` will try to establish a connection with that host. The address of the remote computer can be provided using an IP address or, if provided, an identifier. +This command is used **to connect to a remote computer**, for example `ssh 123.456.789.012` will try to establish a connection with that host. The address of the remote computer can be provided using an IP address or, if provided, an identifier. + +If the remote computer requires the user to login, they can use the form `ssh username@remote_address`, which will then prompt them for the user password on a successful connection. + +One thing to note, if the server is configured to listen to any port other than `22`, then you have to use `-p` option to specify the port. For example: `ssh -p 2024 123.456.789.012`. If the remote computer requires user login, the form `ssh username@remote_address` can be used, which will then prompt for the user password on successful connection.