Storm: 轻松管理 SSH 连接
如果你有多台 SSH 主机需要管理,每次直接手输 `ssh user@ip`自然麻烦。虽然我们可以将其[添加到 `~/.ssh/config`][c] 配置文件中,不过也得手动编辑才行。[Storm][s] 则使这一过程像风一样轻盈完成。
Storm 使用 Python 编写而成,允许你对 SSH 连接进行管理,包括
执行添加、编辑、列出、搜索等操作。
安装 Storm 可以使用 Python 包管理器 pip
:
pip install stormssh
#### 添加 SSH 连接
命令执行后会有如下信息:
success vps added to your ssh config. you can connect it by typing "ssh
vps".
#### 编辑 SSH 连接
编辑已添加的 vps 连接:
同样有信息提示:
success "vps" updated successfully.
#### 列出 SSH 连接
要列出已添加的连接,执行:
storm list
输出结果为:
ubox -> [email protected]:22
[custom options] serveralivecountmax=120 serveraliveinterval=30
#### 搜索 SSH 连接
搜索也是可以的,例如搜索包含 vp 的 SSH:
storm search vp
将显示:
除了命令行使用界面外,Storm 也包含 Web UI,感兴趣的朋友
不妨自行尝试看看。
[s]: https://github.com/emre/storm
推荐阅读: