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 […]
Linux common commands-22: ssh Read More »