Total Pageviews

Sunday 7 January 2018

一个可以在浏览器上运行的SSH客户端:WebSSH2

本文介绍的WebSSH客户端可以直接在浏览器里打开使用,有时候还是挺方便的。

安装

1、首先安装Node.js环境

2、安装Webssh2

apt-get -y install git  #debian/ubuntu系统
yum -y install git  #centos系统
git clone https://github.com/billchurch/WebSSH2
cd WebSSH2
npm install --production

3、运行Webssh2
这里需要使用到screen,让Webssh2程序在后台一直运行即可。
使用命令:

yum install screen  #centos系统
apt-get install screen  #debian/ubuntu系统
screen -S Webssh2
cd WebSSH2
npm start
然后在浏览器打开http://IP:Port/ssh/host/IP即可使用。也可以通过修改config.json中的listen.port修改端口.

No comments:

Post a Comment