美文网首页
[Linux]-ssh命令 – 安全连接客户端

[Linux]-ssh命令 – 安全连接客户端

作者: 六千宛 | 来源:发表于2021-09-03 15:49 被阅读0次

    语法

    ssh [参数] [远程主机]

    参数

    image.png
    登录远程服务器:
    
    [root@linuxcool ~]# ssh 202.102.240.88
    用test用户连接远程服务器:
    
    [root@linuxcool ~]# ssh -l test 202.102.220.88
    查看分区列表:
    
    [root@linuxcool ~]# ssh 202.102.220.88 /sbin/fdisk -l
    强制使用ssh协议版本1:
    
    [root@linuxcool ~]# ssh -1
    开启认证代理连接转发功能:
    
    [root@linuxcool ~]# ssh -A
    

    相关文章

      网友评论

          本文标题:[Linux]-ssh命令 – 安全连接客户端

          本文链接:https://www.haomeiwen.com/subject/xvycwltx.html