开源实例之Telebit
前言
本篇介绍用 Telebit 实现内网穿透。了解什么是内网穿透可以参考《开源实例之frp》一文中的介绍。
Telebit介绍
Break out of localhost. Access your devices from behind firewalls. Securely access your services from anywhere. An easy-to-use secure tunnel for all sorts of wonderful things (kind of like a poor man's VPN).
Telebit 是简单易用的内网穿透工具,提供了类似ngrok的公共服务端,同时也可以自建服务端。
官网地址:https://telebit.cloud
客户端仓库:https://git.coolaj86.com/coolaj86/telebit.js
服务端仓库:https://git.coolaj86.com/coolaj86/telebit-relay.js
客户端安装
脚本安装
curl https://get.telebit.io/ | bash
npm安装
npm install -g telebit
公共服务端使用
WEB服务
#Forwarding https://jondoe.telebit.io => localhost:3000
telebit http 3000
文件传输
#Serving ./project.zip as https://jondoe.telebit.io
telebit http ./project.zip
SSH
#Forwarding jondoe.telebit.io -p 5050 => localhost:22
telebit ssh auto
ssh -p 5050 jondoe.telebit.io
TCP
#Forwarding jondoe.telebit.io -p 5050 => localhost:9000
telebit tcp 9000
自建服务端
curl -fsSL https://get.telebit.cloud/relay | bash
具体设置详见仓库说明。
后记
标签: 开源实例