From 5a13aa415f8b450abd4d6407e8c70d93ac0a4028 Mon Sep 17 00:00:00 2001 From: zerandomalt <33420785+zerandomalt@users.noreply.github.com> Date: Sat, 27 Oct 2018 18:35:09 +0100 Subject: [PATCH] Added information about command line options (#19925) Added a link directing to a list of the command line options on the SSH website --- guide/english/bash/bash-ssh/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guide/english/bash/bash-ssh/index.md b/guide/english/bash/bash-ssh/index.md index 7e935e1609..900a83113e 100644 --- a/guide/english/bash/bash-ssh/index.md +++ b/guide/english/bash/bash-ssh/index.md @@ -8,9 +8,12 @@ This command is used **to connect to a remote computer**, for example `ssh 123.4 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. +It also has command line options which can be found on the SSH website. + 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. ### More Information: * [Wikipedia](https://en.wikipedia.org/wiki/Secure_Shell) +* [SSH](https://www.ssh.com/ssh/command)