ssh隧道代理工具,web页面配置,用于nas,本地机器转发代理
593
ssh隧道代理功能,用于隧道映射暴露对外访问的端口,支持本地端口,远程端口,socket代理,隧道功能比较稳定.启动成功后浏览器访问 http://localhost:9527 页面,通过web端配置自己需要代理的信息
#非host模式
docker run -d --name ssh_tunnels -p 9527:9527 -v /etc/ssh_tunnels/data:/data moodincode/ssh_tunnels:latest
#host主机模式:
docker run -d --name ssh_tunnels --network host --restart unless-stopped -e PORT=9527 -v /etc/ssh_tunnels/data:/data moodincode/ssh_tunnels:latest
windows/linux版本和更多教程请查看:https://blog.csdn.net/qq_24577585/article/details/164114918
Content type
Image
Digest
sha256:24c231402…
Size
7.1 MB
Last updated
8 days ago
docker pull moodincode/ssh_tunnels