https://moeclub.org/2017/11/19/483/ 无限制一键全自动 dd 安装 Windows
https://moeclub.org/2017/03/25/82/ Debian(Ubuntu)网络安装/重装一键脚本
https://webinoly.com/en/ Optimized LEMP Web Server
https://ssl.ni-co.moe 免费ssl证书
https://github.com/bao3/one-key-ikev2-vpn 一键搭建适用于Ubuntu/CentOS的IKEV2/L2TP的VPN
https://www.cokemine.com/openvzbbr.html OpenVZ架构VPS安装BBR的三种方法【UML/LKL(91yun)/LKL(Rinetd)】
http://bwgvps.cn/detail.php?id=8 OpenVZ架构VPS安装Google BBR
https://medium.com/@network_extension/如何在a-big-t-app-中使用kcptun-edeeb3fc1afd 如何在A.BIG.T app 中使用kcptun
http://awy.me/2017/05/64m-nei-cun-vps-li-yong-shou-zha-er-debian-xia-an-zhuang-kcptun-jia-su-ss-fu-wu/ debian下安装Kcptun加速SS服务
https://github.com/txthinking/pac A PAC for freedom and more.
https://github.com/dragonite-network/dragonite-java Dragonite 是一个基于 UDP 的可靠传输协议,能针对高丢包与不稳定的网络极大提高传输速度
https://www.uuidgenerator.net Online UUID Generator
https://github.com/nanqinlang-tcp/tcp_nanqinlang 一个tcp_bbr增强版
https://github.com/v2ray/V2Ray.sh 一键安装配置 V2ray,快速部署科学上网工具~
https://caasiu.github.io/ipsec-config/ IPSec VPN 架设教程
https://github.com/jawj/IKEv2-setup 一个使用Ubuntu Server 17.10的IKEv2一键脚本
https://github.com/changlan/kytan kytan: High Performance Peer-to-Peer VPN
https://github.com/wangyu-/UDPspeeder/blob/master/doc/README.zh-cn.md 双边网络加速工具
https://github.com/ToyoDAdoubi/doubi 一个逗比写的各种逗比脚本~
https://github.com/ngosang/trackerslist An updated list of public BitTorrent trackers
https://github.com/sorryforhateyou/gost-heroku 部署gost到Heroku
阅读全文…
参考
词汇
- peer,VPN中的节点,对于服务器而言包括自己的tuntap和每个客户端socket
- tuntap,Linux/Unix中创建的虚拟网卡,读取和写入数据和其它文件设备如socket、file差不多
实现
VPN的实现无非是客户端创建一个虚拟网卡tun/tap,从tun/tap中读取数据包,发送到服务端,服务端写入到它的tun/tap虚拟网卡中,从而让两端像是在同一个局域网内。发送数据无论是走UDP/TCP还是websocket,都只是为了转发虚拟网卡中接收到的数据包(以太包或者ip包)。