安全 Shell 是一种用于安全登录远程系统的协议。 它可用于在远程服务器上记录或执行命令。 更多信息:https://man.openbsd.org/ssh.
ssh {{用户名}}@{{远程主机地址}}
ssh -i {{路径/到/私钥文件}} {{用户名}}@{{远程主机地址}}
ssh {{用户名}}@{{远程主机地址}} -p {{端口号}}
ssh {{用户名}}@{{远程主机地址}} -t {{命令}} {{命令参数}}
localhost:1080
上的 SOCKS 代理):ssh -D {{1080}} {{用户名}}@{{远程主机地址}}
localhost:9999
到 example.org:80
)以及禁用伪终端分配和远程命令的执行:ssh -L {{9999}}:{{example.org}}:{{80}} -N -T {{用户名}}@{{远程主机地址}}
ssh -J {{用户名}}@{{跳转主机地址}} {{用户名}}@{{远程主机地址}}
<回车键> ~ .