All Projects → wuweiit → Bullet

wuweiit / Bullet

【主线】基于Ngrok内网穿透开源项目,稳定、高效的内网穿透系统。私有部署、云服务。

Programming Languages

javascript
184084 projects - #8 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Bullet

Http Proxy Middleware
⚡ The one-liner node.js http-proxy middleware for connect, express and browser-sync
Stars: ✭ 8,730 (+12195.77%)
Mutual labels:  websocket
Docker Magento Mutagen
Mage2click Docker-based development environment for Magento with mutagen.io sync for files on macOS
Stars: ✭ 64 (-9.86%)
Mutual labels:  ngrok
Esdatatool
一个多线程备份恢复es索引的微服务
Stars: ✭ 68 (-4.23%)
Mutual labels:  websocket
Crypto Trading Bot
Cryptocurrency trading bot in javascript for Bitfinex, Bitmex, Binance, FTX, Bybit ... (public edition)
Stars: ✭ 1,089 (+1433.8%)
Mutual labels:  websocket
Benchmark Websocket
Websocket Client and Server for benchmarks with Millions of concurrent connections.
Stars: ✭ 62 (-12.68%)
Mutual labels:  websocket
Laravel Websockets Chat Example
Example of a real-time chat system built with the Laravel WebSockets package, VueJs, and Laravel-echo.
Stars: ✭ 65 (-8.45%)
Mutual labels:  websocket
X11vnc Desktop
Docker image for Ubuntu with X11 and VNC
Stars: ✭ 57 (-19.72%)
Mutual labels:  websocket
Socketcluster Server
Minimal server module for SocketCluster
Stars: ✭ 70 (-1.41%)
Mutual labels:  websocket
Sockjs
SockJS server for rust language
Stars: ✭ 63 (-11.27%)
Mutual labels:  websocket
Gochat
goim server write by golang !🚀
Stars: ✭ 1,144 (+1511.27%)
Mutual labels:  websocket
Recws
Reconnecting WebSocket is a websocket client based on gorilla/websocket that will automatically reconnect if the connection is dropped and keeps the connection alive - thread safe!
Stars: ✭ 60 (-15.49%)
Mutual labels:  websocket
Webconsole
Spigot plugin to manage your server remotely using a web interface
Stars: ✭ 62 (-12.68%)
Mutual labels:  websocket
Waiter
Runs, manages, and autoscales web services on Mesos and Kubernetes
Stars: ✭ 65 (-8.45%)
Mutual labels:  websocket
Ws Wrapper
Lightweight WebSocket lib with socket.io-like event handling, requests, and channels
Stars: ✭ 58 (-18.31%)
Mutual labels:  websocket
Ca11
Multi-Protocol Webphone
Stars: ✭ 69 (-2.82%)
Mutual labels:  websocket
Fish
golang h5捕鱼游戏
Stars: ✭ 58 (-18.31%)
Mutual labels:  websocket
What Mqtt
What MQTT? MQTT on websocket sample.
Stars: ✭ 64 (-9.86%)
Mutual labels:  websocket
Chatroom Vue
一个简单的多人聊天室。基于vue和node+Socket.IO
Stars: ✭ 71 (+0%)
Mutual labels:  websocket
Akka Http
The Streaming-first HTTP server/module of Akka
Stars: ✭ 1,163 (+1538.03%)
Mutual labels:  websocket
Serverless Webrtc Signaling Server
Serverless WebRTC Signaling Server only works for WebRTC P2P.
Stars: ✭ 65 (-8.45%)
Mutual labels:  websocket

什么是 Bullet内网穿透?

Bullet是一款开源的反向代理内网穿透利器,采用Java技术实现了基于Websocket的Bullet内网穿透交互协议,通过自定义的协议控制Ngrok客户端实现Web界面管理。

注意:本项目对Ngrok源码定制化的修改以满足安全性等需求,所以需要使用作者提供的Ngrok源码来编译。推荐使用百度网盘编译好的ngrokd & ngrok命令。

本项目已经解决ngrok内存泄漏问题

LICENSE 996.icu

Bullet 特性

  • 支持http+https、Http、Https协议、TCP协议;
  • 免费开源、灵活配置、多租户支持、多协议支持;
  • TLS实现数据的安全传输;
  • 断连重试机制;
  • 反向代理请求;
  • 远程网络唤醒(v1.2.3开始支持);

Bullet的管理界面

image

目前实现了Mac、linux、window全环境适配.理论上还可以支持ARM,有这方面用户需求的可以联系作者。

Bullet 逻辑架构

image

Bullet 项目结构

目录 说明
build 构建使用的目录接口,用户DevOps流水线发布产品
bullet-common 公共模块,包含加密、日志配置、Bullet协议、Builer结构
bullet-client Bullet客户端代理程序,主要控制Ngrok客户端协同操作
bullet-server Server端为服务端主控程序,提供系列接口供Web前端页面调用,控制Client操作Ngrok客户端
bullet-codemaker 本人比较懒,用的Mybatis-Plus生成代码
databases sql相关的(历史原因部分字段的设计采用驼峰)

BulletServer占用的端口说明: |端口 |说明| |:---- |---- | | 8083 | Ngrok通道 | | 80 | 代理的http端口(固定) | | 443 | 代理的https端口(固定) | | 8081 | Bullet WEB管理服务(默认端口,可通过环境变量修改) |

BulletClient 快速体验

首先您需要登录到平台注册一个账号,激活后您将获得一个雪花域名并赠予一个月的使用权(激活账号后才有哦)。

bullet-client的部署非常简单,百度网盘下载对应的client包

下载地址:https://pan.baidu.com/s/1dy2qzPtN3CmftuHGm3BJgA
密码: h9hf

1、创建bullet文件夹

mkdir -p /opt/bullet/

2、解压客户端压缩包

tar -xvf bullet-client-linux.tar.gz

树形结构如下

.
├── bin
│   ├── bullet
│   ├── bullet.bat
│   └── ngrok
├── conf
│   ├── cert
│   │   ├── ca.crt
│   │   └── readme.md
│   ├── config.json
│   └── ngrok.yml
├── doc
│   ├── bullet.service
│   └── http\345\215\217\350\256\256.md
└── lib
    ├── bullet-client.jar
    └── readme.txt

3、执行 ./bin/bullet 启动客户端 输出日志有客户端编号

./bin/bullet

================================================	
================ Device NO =====================	
=== 5s4jmygyox6o ===	
================================================	

4、登录到Bullet平台绑定设备

image

5、将赠送的域名绑定到设备即可开启内网穿透之旅。

image

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].