杜郎俊赏 - dujun.io

开源实例之SirTunnel

前言

本篇介绍用 SirTunnel 实现内网穿透。了解什么是内网穿透可以参考《开源实例之frp》一文中的介绍。

SirTunnel介绍

Minimal, self-hosted, 0-config alternative to ngrok. Similar to sish but leverages Caddy+OpenSSH rather than custom server code.

SirTunnel 是一款零配置的内网穿透工具。

仓库地址:https://github.com/anderspitman/SirTunnel

部署服务端

克隆仓库代码,执行安装和启动脚本:

sh install.sh
sh run_server.sh

启动客户端

#https://sub1.example.com 访问本地 WEB 服务
ssh -tR 9001:localhost:8080 example.com sirtunnel.py sub1.example.com 9001

多用户版本

需要多人使用,可以参考仓库分支https://github.com/matiboy/SirTunnel

后记

体验更多开源实例

标签: 开源实例
日期:2023-04-17