发现一好玩的软件shellinabox,使用浏览器访问Web界面就可登录管理服务器shell终端,可使用https加密连接,比之使用putty或xshell连接ssh方便了许多。
Shellinabox安装:
1 2 3 4 5 6 | wget http: //shellinabox .googlecode.com /files/shellinabox-2 .14. tar .gz tar zxvf shellinabox-2.14. tar .gz cd shellinabox-2.14 . /configure make make install |
Shellinabox参数:
1 2 3 4 5 6 | -b #后台运行 -u #运行用户,默认nobody -g #运行用户组 -p #监听端口,默认4200 -t #不以ssl运行 -c #证书目录 |
生成ssl证书:
1 2 | openssl req -new -x509 -nodes -out server.crt -keyout server.key cat server.crt server.key > /tmp/certificate .pem |
启动Shellinabox:
1 | shellinaboxd -b -c /tmp -p 8080 |