美文网首页
SSH(Secure Shell)

SSH(Secure Shell)

作者: JeremyL | 来源:发表于2017-08-30 13:28 被阅读9次

    usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec] [-D [bind_address:]port] [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11] [-i identity_file] [-L [bind_address:]port:host:hostport] [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port] [-Q cipher | cipher-auth | mac | kex | key] [-R [bind_address:]port:host:hostport] [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]] [user@]hostname [command]

    -l: 用户名
    -p: 主机端口,默认2


    用户(user)远程登录主机

    $ ssh -p 22 user@10.10.92.111
    $ ssh -p 22 -l user 10.10.92.111 #user是服务器用户名

    本地用户名登录时可以省略用户名

    $ ssh -p 22 10.10.92.111

    相关文章

      网友评论

          本文标题:SSH(Secure Shell)

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