随笔分类 - VPN技术
常见VPN服务器与客户端的搭建,使用
摘要:使用gost程序 配置文件如下 { "Routes": [ { "Retries": 1, "ServeNodes": [ "127.0.0.1:11001" ], "ChainNodes": [ "socks://clwysk5:123@8.218.23.53:11001" ] }, { "Ret
阅读全文
摘要:/etc/xl2tpd/xl2tpd.conf [global] ipsec saref = yes [lns default] ip range = 10.1.2.2-10.1.2.255 local ip = 10.1.2.1 ;require chap = yes refuse chap =
阅读全文
摘要:iptables -F iptables -I INPUT -s 123.14.0.0/16 -p tcp --dport 33891 -j ACCEPT iptables -A INPUT -p tcp --dport 33891 -j DROP pkill gost nohup ./gost -
阅读全文
摘要:完整文章 https://www.vpsserver.com/community/tutorials/12/setup-and-configuration-of-strongswan-accel-ppp-on-ubuntu-1404-64bit/
阅读全文
摘要:首先在两台centos上安装socat (sockets cat) yum -y install socat 服务端运行:(使用tcp:3443作为VPN的服务 端) socat -d -d tcp-LISTEN:3443,reuseaddr TUN:192.168.255.1/24,up 客户端运
阅读全文
摘要:xl2tpd https://github.com/xelerance/xl2tpd accel-ppp https://accel-ppp.org mpd http://mpd.sourceforge.net openl2tp https://sourceforge.net/projects/op
阅读全文
摘要:1 Ethernet MinSize = 512bit = 64 Byte 2 Ethernet MaxSize = 1518 Byte 3 so Ethernet IP MTU = 1518 - 18 ( 6 SRCMAC+ 6 DSTMAC+ 2 TYPE+ 4 CRC) = 1500 B 4
阅读全文
摘要:set SS5_SRV set SS5_AUTHCACHEAGE 60 set SS5_AUTHOCACHEAGE 60 auth 0.0.0.0/0 - u permit u 0.0.0.0/0 - 0.0.0.0/0 - - - - - bandwidth limituser 20 512000
阅读全文
摘要:一、UDPspeeder 1、安装 (VPS端) wget https://github.com/wangyu-/UDPspeeder/releases/download/20180522.0/speederv2_binaries.tar.gz tar -xzvf speederv2_binarie
阅读全文
摘要:使用libreswan部署l2tp https://libreswan.org/wiki/VPN_server_for_remote_clients_using_IKEv1_with_L2TP 部署脚本(自已总结) 1 #!/bin/sh 2 ##原文https://blog.51cto.com/i
阅读全文
摘要:1 rsock https://github.com/iceonsun/rsock 对UDP协议进行底层多路复用,可以实现突破运营商对带宽的限制,可以配置kcptun使用 rsock仅仅不是加速(加速目前由kcptun进行),也不是vpn,而是把udp流量转换成多条伪tcp/正常udp流量。 rso
阅读全文