Difference between revisions of "Ssh (OpenSSH client)"

From wikieduonline
Jump to navigation Jump to search
Line 29: Line 29:
 
== Activities ==
 
== Activities ==
 
* Understand differences between stop and exit: <code>ssh -O exit [email protected]</code>
 
* Understand differences between stop and exit: <code>ssh -O exit [email protected]</code>
 
+
* [[Configure OpenSSH to reuse ssh connections]]
 
 
  
 
== See also ==
 
== See also ==

Revision as of 08:23, 19 December 2019

ssh[1] is the OpenSSH ssh client for logging or executing commands into remote devices/machines


Usage

  • ssh REMOTE_USERNAME@REMOTE_SERVER_NAME_OR_IP
  • ssh -vvv REMOTE_USERNAME@REMOTE_SERVER_NAME_OR_IP (-v increase verbosity, maximum 3)
    • ssh -vvv REMOTE_USERNAME@REMOTE_SERVER_NAME_OR_IP 2>&1 | grep "STRING_TO_SEARCH"

Multiplexing options

ssh -O check server.example.org or ssh -O check [email protected] 
Master running (pid=26289)
ssh -O check [email protected] 
Control socket connect(/path/): No such file or directory

To stop an specific multiplexed session:

ssh -O stop [email protected]

Avoid using Multiplexing for a connections:

ssh -o "ControlMaster=no" server.example.org

See also: Configure OpenSSH to reuse ssh connections

Activities

See also

  • http://man7.org/linux/man-pages/man1/ssh.1.html
  • Advertising: