SSH命令实例

连接服务器最常用命令

ssh -i ~/.ssh/mySshPkey developer@192.168.1.237 -p 22

指定私钥,免密码登录服务器,指定特殊端口,

有的时候需要借助一个ssh连接做代理来连接到另一个服务器

ssh -o "ProxyCommand ssh -p 22 developer@192.168.1.237 -A -W %h:%p" -i ~/.ssh/mySshPkey developer@192.168.1.236

如果ProxyCommand帮不了你,那我们还可以考虑编写expect脚本做复杂到连接逻辑

参考 http://wangchujiang.com/linux-command/c/ssh.html https://www.ktanx.com/blog/p/4016 https://blog.csdn.net/pipisorry/article/details/52269785 https://linux.cn/article-3858-1.html http://www.ruanyifeng.com/blog/2011/12/ssh_remote_login.html http://os.51cto.com/art/201011/235252.htm https://linux.cn/article-3858-1.html