基于vue、xterm、golang实现的web ssh客户端程序
特性
- 前后端分离,前端使用xterm、vue,后端使用golang写的服务
- 支持录像审计,支持录像回看
run demo
- 编译前端程序
$ cd front
$ npm -i
$ npm run build # 可以看到在front生成一个dist目录,里头就是编译后的前端文件
- 编译golang程序
main.go
confing := &webssh.WebSSHConfig{
Record: true,
RecPath: "./rec/cast/",
RemoteAddr: "localhost:22",
User: "wida",
Password: "wida",
AuthModel: webssh.PASSWORD,
}
$ go build -o webssh main.go
$ ./webssh
http://localhost:8080/#/term
查看录像
http://localhost:8080/#/rec