Linux common commands-22: ssh

The ssh command is a client connection tool in the openssh suite, which can realize remote management of the server. The server uses port 22 by default.

Syntax format: ssh [parameter] [remote host]

Common parameters:

Example

 # 以当前系统用户登录远程主机ssh 192.168.1.100 # 指定用户登录远程主机ssh -l test 192.168.1.100 # 或者ssh [email protected] # 指定远程端口登录ssh -p 1024 [email protected]

Common ssh client tools include putty and mobaxterm

This article is reprinted from https://xugaoxiang.com/2022/06/06/linux-cmds-22-ssh/
This site is for inclusion only, and the copyright belongs to the original author.

Leave a Comment