All Projects → Bpazy → finalspeed

Bpazy / finalspeed

Licence: GPL-2.0 license
转移到Gradle,优化构建过程

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to finalspeed

Rxtool
Android开发人员不得不收集的工具类集合 | 支付宝支付 | 微信支付(统一下单) | 微信分享 | Zip4j压缩(支持分卷压缩与加密) | 一键集成UCrop选择圆形头像 | 一键集成二维码和条形码的扫描与生成 | 常用Dialog | WebView的封装可播放视频 | 仿斗鱼滑动验证码 | Toast封装 | 震动 | GPS | Location定位 | 图片缩放 | Exif 图片添加地理位置信息(经纬度) | 蛛网等级 | 颜色选择器 | ArcGis | VTPK | 编译运行一下说不定会找到惊喜
Stars: ✭ 11,567 (+72193.75%)
Mutual labels:  netspeed

FinalSpeed Build Status

FinalSpeed是高速双边加速软件,可加速所有基于tcp协议的网络服务,在高丢包和高延迟环境下,仍可达到90%的物理带宽利用率,即使高峰时段也能轻松跑满带宽.

Build

Java1.7 or higher is required.
Windows: winpcap
Linux: libpcap, iptables

Windows

Build client: gradlew releaseClient
Build server: gradlew releaseServer
Build client&server: gradlew release

Linux

Build client: ./gradlew releaseClient
Build server: ./gradlew releaseServer
Build client&server: ./gradlew release

###Binary Client: output/FinalSpeedClient-version.jar
Server: output/FinalSpeedServer-version.jar

/output/libs/*.jar is required.

Usage

需要管理员权限
java -jar finalspeed.jar -b 运行CLI版
java -jar finalspeed.jar 运行GUI版

配置文件与finalspeed必须处在同一目录下.
client_config.json

{
    // 下载速度,单位是 B,字节。这里换算起来就是 11MB。请把这里改成本机的下载速度
    "download_speed": 11200698, 
    // 协议:tcp 或 udp。注意:服务端如果是 OpenVZ 架构的话,则只支持 udp。
    "protocal": "udp", 
    // 服务器地址
    "server_address": "1.2.3.4", 
    // 一般不需要更改,保持默认即可。
    "server_port": 150, 
    // 不需要更改,保持默认即可。
    "socks5_port": 1083, 
    // 上传速度,单位是 B,字节。
    "upload_speed": 357469
}

port_map.json

{
    "map_list": [
        {
            // 要加速的服务器端口
            "dst_port": 12345, 
            // 本地端口
            "listen_port": 1099, 
            // 备注信息
            "name": "ss"
        }, 
        {
            "dst_port": 23456, 
            "listen_port": 2200, 
            "name": "ssh"
        }
    ]
}
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].