飞道的博客

每天学一个 Linux 命令(59):ssh

519人阅读  评论(0)

点击下方“民工哥技术之路”,选择“设为星标”

回复“1024”获取独家整理的学习资料!

昨日推荐:每天学一个 Linux 命令(58):telnet

命令简介

ssh ( Secure Shell )命令是用于安全登录到远程系统的协议,它可用于在远程服务器上记录或执行命令。

ssh(SSH 客户端)是用于登录到远程计算机并在远程计算机上执行命令的程序。可以在不安全的网络中于两个不受信任的主机之间提供安全的加密通信。

语法格式

ssh [OPTIONS] [-p PORT] [USER@]HOSTNAME [COMMAND]

选项说明


   
  1. -4 #强制ssh协议只使用IPv4地址
  2. -6 #强制ssh协议只使用IPv6地址
  3. -A #启用来自身份验证代理的连接转发
  4. -a  #禁用身份验证代理连接的转发
  5. -B bind_interface  #绑定到的地址 bind_interface在尝试连接到目标主机之前
  6. -b bind_address    #使用 bind_address在本地计算机上作为连接的源地址
  7. -C  #请求压缩所有数据
  8. -c cipher_spec  #指定用于加密会话的密码规范
  9. -D [bind_address:] 端口  #指定本地“动态”应用程序级端口转发
  10. -E log_file   #将调试日志附加到 log_file 而非标准错误
  11. -e escape_char  #设置带有pty的会话的转义字符(默认值: ' ~'
  12. -F 配置文件  #指定每用户ssh的配置文件 
  13. -f  #配置ssh在执行命令之前将请求转到后台 
  14. -g  #允许远程主机连接到本地转发的端口
  15. -i identity_file  #指定从这个文件中去读取用于公共密钥身份验证的标识(私有密钥)
  16. -K  #启用基于GSSAPI的身份验证
  17. -k  #禁用将GSSAPI凭据
  18. -L local_socket:remote_socket  #指定将与本地(客户端)主机上给定的TCP端口或Unix套接字的连接转发到远程的给定主机和端口或Unix套接字。
  19. -N  #禁止执行远程命令 
  20. -p port  #指定SSH连接端口
  21. -q  #静默模式
  22. -s  #用于请求调用远程系统上的子系统
  23. -T  #禁用分配伪终端
  24. -t  #强制分配伪终端
  25. -V  #打印SSH版本号并退出
  26. -v  #详细模式(输出SSH连接的过程信息)
  27. -X  #启用X11转发
  28. -x  #禁用X11转发
  29. -Y  #启用受信任的X11转发
  30. -y  #指定发送日志信息 syslog( 3)系统模块

应用举例

连接到远程主机


   
  1. ssh username@remote_host
  2. #ssh 使用特定身份(私钥)连接到远程主机
  3. ssh -i path/to/key_file username@remote_host

使用特定端口连接到远程主机

ssh username@remote_host -p 9999

用SSH连接到远程服务器上再运行命令


   
  1. ssh remote_host command
  2. [root@centos7 ~]# ssh  192.168 .1 .199 ls
  3. The authenticity of host  '192.168.1.199 (192.168.1.199)' can 't be established.
  4. ECDSA key fingerprint is SHA256:mF2QLxkGH/mWhHu/NlaKOrx4nKkyVvhYV6BRPA8TdEk.
  5. ECDSA key fingerprint is MD5:a1:91:03:6b:9a:91:f6:c3:cf:19:06:32:19:b9:85:8e.
  6. Are you sure you want to continue connecting (yes/no)? yes
  7. Warning: Permanently added ' 192.168 .1 .199 ' (ECDSA) to the list of known hosts.
  8. root@192.168.1.199's password: 
  9. anaconda-ks.cfg
  10. dos_test.txt
  11. goinception
  12. goInception-linux-amd64-v1 .2 .3.tar.gz
  13. httpd
  14. httpd -2.4 .46
  15. httpd -2.4 .46.tar.gz
  16. mingongge.file
  17. mingongge.z01
  18. mingongge.z02
  19. mingongge.zip
  20. testdir
  21. test.txt

查看一下SSH远程登录过程的详细信息


   
  1. [root@centos7 ~]# ssh -v  192.168 .1 .199 -p  22
  2. OpenSSH_7 .4p1, OpenSSL  1.0 .2k-fips   26 Jan  2017
  3. debug1: Reading configuration data /etc/ssh/ssh_config
  4. debug1: /etc/ssh/ssh_config line  58: Applying options  for *
  5. debug1: Connecting to  192.168 .1 .199 [ 192.168 .1 .199] port  22.
  6. debug1: Connection established.
  7. debug1: permanently_set_uid:  0/ 0
  8. debug1: key_load_public: No such file or directory
  9. debug1: identity file /root/.ssh/id_rsa  type  -1
  10. debug1: key_load_public: No such file or directory
  11. debug1: identity file /root/.ssh/id_rsa-cert  type  -1
  12. debug1: key_load_public: No such file or directory
  13. debug1: identity file /root/.ssh/id_dsa  type  -1
  14. debug1: key_load_public: No such file or directory
  15. debug1: identity file /root/.ssh/id_dsa-cert  type  -1
  16. debug1: key_load_public: No such file or directory
  17. debug1: identity file /root/.ssh/id_ecdsa  type  -1
  18. debug1: key_load_public: No such file or directory
  19. debug1: identity file /root/.ssh/id_ecdsa-cert  type  -1
  20. debug1: key_load_public: No such file or directory
  21. debug1: identity file /root/.ssh/id_ed25519  type  -1
  22. debug1: key_load_public: No such file or directory
  23. debug1: identity file /root/.ssh/id_ed25519-cert  type  -1
  24. debug1: Enabling compatibility mode  for protocol  2.0
  25. debug1: Local version  string SSH -2.0-OpenSSH_7 .4
  26. debug1: Remote protocol version  2.0, remote software version OpenSSH_7 .4
  27. debug1: match: OpenSSH_7 .4 pat OpenSSH* compat  0x04000000
  28. debug1: Authenticating to  192.168 .1 .199: 22 as  'root'
  29. debug1: SSH2_MSG_KEXINIT sent
  30. debug1: SSH2_MSG_KEXINIT received
  31. debug1: kex: algorithm: curve25519-sha256
  32. debug1: kex: host key algorithm: ecdsa-sha2-nistp256
  33. debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
  34. debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
  35. debug1: kex: curve25519-sha256 need= 64 dh_need= 64
  36. debug1: kex: curve25519-sha256 need= 64 dh_need= 64
  37. debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
  38. debug1: Server host key: ecdsa-sha2-nistp256 SHA256:mF2QLxkGH/mWhHu/NlaKOrx4nKkyVvhYV6BRPA8TdEk
  39. debug1: Host  '192.168.1.199' is known and matches the ECDSA host key.
  40. debug1: Found key in /root/.ssh/known_hosts: 1
  41. debug1: rekey after  134217728 blocks
  42. debug1: SSH2_MSG_NEWKEYS sent
  43. debug1: expecting SSH2_MSG_NEWKEYS
  44. debug1: SSH2_MSG_NEWKEYS received
  45. debug1: rekey after  134217728 blocks
  46. debug1: SSH2_MSG_EXT_INFO received
  47. debug1: kex_input_ext_info: server-sig-algs=<rsa-sha2 -256,rsa-sha2 -512>
  48. debug1: SSH2_MSG_SERVICE_ACCEPT received
  49. debug1: Authentications that can  continue: publickey,gssapi-keyex,gssapi-with-mic,password
  50. debug1: Next authentication method: gssapi-keyex
  51. debug1: No valid Key exchange context
  52. debug1: Next authentication method: gssapi-with-mic
  53. debug1: Unspecified GSS failure.  Minor code may provide more information
  54. No Kerberos credentials available ( default cache: KEYRING:persistent: 0)
  55. debug1: Unspecified GSS failure.  Minor code may provide more information
  56. No Kerberos credentials available ( default cache: KEYRING:persistent: 0)
  57. debug1: Next authentication method: publickey
  58. debug1: Trying private key: /root/.ssh/id_rsa
  59. debug1: Trying private key: /root/.ssh/id_dsa
  60. debug1: Trying private key: /root/.ssh/id_ecdsa
  61. debug1: Trying private key: /root/.ssh/id_ed25519
  62. debug1: Next authentication method: password
  63. root@ 192.168 .1 .199 's password: 
  64. debug1: Authentication succeeded (password).
  65. Authenticated to 192.168.1.199 ([192.168.1.199]:22).
  66. debug1: channel 0: new [client-session]
  67. debug1: Requesting no-more-sessions@openssh.com
  68. debug1: Entering interactive session.
  69. debug1: pledge: network
  70. debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0
  71. debug1: Sending environment.
  72. debug1: Sending env LANG = en_US.UTF-8
  73. Last login: Sun Jan 17 14:26:28 2021 from 192.168.1.93

每天学一个 Linux 命令(55):id

每天学一个 Linux 命令(56):su/sudo

每天学一个 Linux 命令(57):cal

推荐阅读 点击标题可跳转

比 ELK 更轻量、高效!企业级日志平台后起之秀 Graylog!

运维请务必收藏!Nginx 五大常见应用场景

Windows 10 要成绝唱了!!!

华为:鸿蒙绝不是安卓换皮!!!

CentOS 搭建 Vsftpd 服务,一次性成功,收藏了!

又一款 Nginx 管理可视化神器!配置、监控一条龙

k8s 日志收集的那些套路

Systemd 进程管理工具实战教程

手把手教你搭建 RocketMQ 高可用集群!


转载:https://blog.csdn.net/mingongge/article/details/114695980
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场