AutoSSH实现OS X自动SSH登录远程服务器

AutoSSH实现OS X自动SSH登录远程服务器

  • 安装依赖(我是OS X系统,不需要安装)
  • 安装AutoSSH
  • 配置config
  • 用例Example

安装依赖(我是OS X系统,不需要安装)

linux
yum install expect
apt-get install expect

安装AutoSSH

$ git clone https://github.com/FeeiCN/autossh.git
$ sudo cp autossh/autossh /usr/local/bin/

配置config

vim ~/.autosshrc
server_name|192.168.1.110|root|password|port|is_bastion
//下面是例子,自行替换description、IP、username和password等字段
wufeifei|192.168.1.1|root|password|22|1

用例Example

$ autossh

AUTO SSH

[1] 192.168.1.110:feei
[2] 10.11.2.103:root
[3] 103.21.140.84:root

Server Number:(Input Server Num)

你可能感兴趣的:(AutoSSH实现OS X自动SSH登录远程服务器)