# 内网穿透
# Flag
- https://github.com/topics/tunnel (opens new window)
- https://github.com/topics/expose (opens new window)
- https://github.com/topics/reverse-proxy (opens new window)
- https://github.com/topics/http-proxy (opens new window)
- https://github.com/topics/proxy (opens new window)
- https://github.com/topics/proxy-server (opens new window)
- https://github.com/topics/tor (opens new window)
- https://github.com/topics/onion (opens new window)
- https://github.com/anderspitman/awesome-tunneling (opens new window)
- Go 简单而强大的反向代理(Reverse Proxy) (opens new window)
- 网络代理与VPN应用详解 (opens new window)
- 正向代理与反向代理 (opens new window)
- 一种基于Nginx的域名解析与内网穿透方案 (opens new window)
- ngrok、frp、n2n (opens new window)
- http://serveo.net (opens new window)
- https://github.com/open-dingtalk/pierced (opens new window)
- Windows只能使用CMD执行,power shell不兼容,钉钉的内穿透工具包装的是ngrok
- https://developers.dingtalk.com/document/resourcedownload/http-intranet-penetration (opens new window)
- 网云穿 https://www.xiaomy.net (opens new window)
- https://www.cpolar.com (opens new window)
- https://github.com/microsoft/dev-tunnels (opens new window)
- https://github.com/localtunnel/localtunnel (opens new window)
- https://github.com/anderspitman/SirTunnel (opens new window)
其他
- https://github.com/ntop/n2n (opens new window)
- https://github.com/lwch/natpass (opens new window)
- https://github.com/cnlh/nps (opens new window)
- https://github.com/ffay/lanproxy (opens new window)
- https://github.com/snail007/goproxy (opens new window)
- https://github.com/Wisdom-Projects/holer (opens new window)
- https://github.com/antoniomika/sish (opens new window)
- https://www.nsloop.com/nattunnel (opens new window)
- https://github.com/taichunmin/docker-serveo-server (opens new window)
- https://github.com/heiher/natmap (opens new window)
- https://github.com/pgrok/pgrok (opens new window)
- https://github.com/P001water/yuze (opens new window)
- https://github.com/lbl8603/vnt (opens new window)
- ZeroTier https://github.com/zerotier (opens new window)
- https://github.com/tailscale (opens new window)
- https://github.com/robbie-cahill/tunnelmole-client (opens new window)
# ngrok
ngrok是一个反向代理,通过在公共的端点和本地运行的Web服务器之间建立一个安全的通道。 ngrok可捕获和分析所有通道上的流量,便于后期分析与响应。
- https://github.com/topics/ngrok (opens new window)
- https://github.com/inconshreveable/ngrok (opens new window)
- https://github.com/bubenshchykov/ngrok (opens new window)
# frp
- FRP免费服务器 (opens new window)
- 铂金frp - 反向代理工具之铂金frp免费服务 (opens new window)
- chuantou.org的免费Frp内网穿透服务 (opens new window)
- https://github.com/fatedier/frp (opens new window)
- https://github.com/luckjiawei/frpc-desktop (opens new window)
- Windows客户端脚本,会自动下载最新版fprc
# 获取frp最新版本号
wget -qO- https://github.com/fatedier/frp/releases/latest | grep '<title>' | awk '{print $2}'
curl -s https://github.com/fatedier/frp/releases/latest | cut -d \" -f 2 | awk -F "/" '{print $NF}'
curl -s https://api.github.com/repos/fatedier/frp/releases/latest | grep 'tag_name' | cut -d \" -f 4
wget -qO- https://api.github.com/repos/fatedier/frp/releases/latest | grep 'tag_name' | cut -d \" -f 4
# 一键安装脚本
# frp-onekey
# 下载脚本
wget https://raw.githubusercontent.com/MvsCode/frp-onekey/master/install-frps.sh
# 脚本授权
chmod 700 ./install-frps.sh
# 运行脚本安装
./install-frps.sh install
# 升级
bash install-frps.sh update
# 卸载
bash install-frps.sh uninstall
设置参数说明
bind_port
输入frp提供服务的端口,用于服务器端和客户端通信:vhost_http_port
输入frp进行http穿透的http服务端口vhost_https_port
输入frp进行https穿透的https服务端口dashboard_port
输入frp的控制台服务端口,用于查看frp工作状态dashboard_user
输入控制台账号,默认admindashboard_pwd
输入控制台密码,默认随机token
输入frp服务器和客户端通信的密码,默认是随机生成的max_pool_count
设置每个代理可以创建的连接池上限,默认50log_level
设置日志等级,4个选项,默认是info
1: info(default)
2: warn
3: error
4: debug
log_max_days
设置日志保留天数,范围是1到30天,默认保留3天。log_file
设置是否开启日志记录,默认开启,开启后日志等级及保留天数生效,否则等级和保留天数无效1: enable(default)
2: disable
tcp_mux
1: enable (default)
2: disable
kcp support
1: enable (default)
2: disable
管理命令
/etc/init.d/frps start
/etc/init.d/frps stop
/etc/init.d/frps restart
/etc/init.d/frps status
/etc/init.d/frps config
/etc/init.d/frps version
# 服务端配置
[common]
# 服务器IP,0.0.0.0为服务器全局所有IP可用,
# 假如你的服务器有多个IP则可以这样做,或者填写为指定其中的一个服务器IP,支持IPV6
bind_addr = 0.0.0.0
# 通讯端口,用于和客户端内网穿透传输数据的端口,可自定义
bind_port = 7000
# UDP通讯端口,用于点对点内网穿透
bind_udp_port = 7001
# 用于KCP协议UDP通讯端口,在弱网环境下传输效率提升明显,
# 但是会有一些额外的流量消耗。设置后frpc客户端须设置protocol = kcp
kcp_bind_port = 7000
# http监听端口,注意可能和服务器上其他服务用的80冲突,
# 比如centos有些默认有Apache,可自定义
vhost_http_port = 7552
# https监听端口,可自定义
vhost_https_port = 446
# 通过浏览器查看 frp 的状态以及代理统计信息展示端口,可自定义
dashboard_port = 7500
# 信息展示面板用户名
dashboard_user = admin
# 信息展示面板密码
dashboard_pwd = admin
# AdminUI可以帮助用户通过浏览器来查询和管理客户端的proxy状态和配置。
admin_addr = 127.0.0.1
admin_port = 7400
admin_user = admin
admin_pwd = admin
# 特权模式认证密钥
token = bajins.com
# 端口白名单,为了防止端口被滥用,可以手动指定允许哪些端口被使用
#allow_ports = 1-65535
# 每个内网穿透服务限制最大连接池上限,避免大量资源占用,可自定义
max_pool_count = 100
# frpc所在机器和frps所在机器的时间相差不能超过15分钟,因为时间戳会被用于加密验证中,
# 防止报文被劫持后被其他人利用,单位为秒,默认值为900,即 15 分钟。
# 如果修改为0,则frps将不对身份验证报文的时间戳进行超时校验。
# 国外服务器由于时区的不同,时间会相差非常大,这里需要注意同步时间或者设置此值为0
authentication_timeout = 0
# 配置了此参数,则custom_domains中不能是属于此参数的子域名或者泛域名。
# 客户端使用subdomain指定子域名前缀,custom_domains指定子域名全路径
subdomain_host = zd966.com
# 最多保存多少天日志
log_max_days = 7
# 指定日志输出文件
log_file = frps.log
# 指定日志输出级别
log_level = info
# svp
- https://github.com/search?q=vmess (opens new window)
- https://github.com/search?q=v2ray (opens new window)
- https://github.com/topics/v2ray (opens new window)
- https://github.com/topics/gfw (opens new window)
- https://github.com/Alvin9999/new-pac/wiki (opens new window)
- https://github.com/bannedbook/fanqiang (opens new window)
- https://github.com/hoochanlon/fq-book (opens new window)
- https://github.com/vpncn/vpncn.github.io (opens new window)
- https://github.com/teddysun (opens new window)
- 面板 https://github.com/MHSanaei/3x-ui (opens new window)
- 速度测试 https://github.com/xxf098 (opens new window)
- https://github.com/ssrsub/ssr/tree/master (opens new window)
- https://github.com/pojiezhiyuanjun/freev2 (opens new window)
- https://github.com/mianfeifq/share (opens new window)
- https://www.ssrtool.com (opens new window)
- https://github.com/selierlin/Share-SSR-V2ray (opens new window)
- https://github.com/ThinkDevelop/Free-SS-SSR (opens new window)
- https://github.com/ugvf2009/Miles (opens new window)
- https://github.com/fqshare/free-ssr-v2ray-vpn (opens new window)
- https://free-ss.site (opens new window)
- https://github.com/freefq/free (opens new window)
- https://github.com/Pawdroid/Free-servers (opens new window)
- https://github.com/mksshare/mksshare.github.io (opens new window)
- https://github.com/githubvpn007/v2rayNvpn (opens new window)
- https://github.com/abshare/abshare.github.io (opens new window)
- https://blog.hostmjj.com (opens new window)
- https://github.com/hwanz/SSR-V2ray-Trojan-vpn (opens new window)
- https://github.com/vvbbnn00/WARP-Clash-API (opens new window)
- https://github.com/yonggekkk/Cloudflare-workers-pages-vless (opens new window)
- https://github.com/jhao104/proxy_pool (opens new window)
- https://ruanjianku.cloud/daili (opens new window)
- https://v2rayse.com (opens new window)
- https://github.com/dongyubin/Free-AppleId-Serve (opens new window)
- https://github.com/yebekhe/TVC (opens new window)
- https://github.com/wzdnzd/aggregator (opens new window)
- https://github.com/barry-far/V2ray-Configs (opens new window)
- https://github.com/Cry1ngMan/1 (opens new window)
订阅转换器
- https://github.com/CareyWang/sub-web (opens new window)
- https://github.com/tindy2013/subconverter (opens new window)
- https://github.com/lasoychina/v2ray_booking (opens new window)
- https://github.com/Peng-YM/Sub-Store (opens new window)
- https://subcon.dlj.tf (opens new window)
- https://sub-web.wcc.best (opens new window)
- https://api.nameless13.com (opens new window)
- https://agwa.page (opens new window)
- https://acl4ssr.netlify.app (opens new window)
- https://github.com/acl4ssr-sub/acl4ssr-sub.github.io (opens new window)
- https://github.com/youshandefeiyang/sub-web-modify (opens new window)
- https://github.com/tindy2013/subconverter (opens new window)
- https://id9.cc (opens new window)
- https://sub.weleven11.com (opens new window)
- https://bianyuan.xyz (opens new window)
- https://sub-web.qingsay.com (opens new window)
- https://web.api.ytoo-163cdn.com (opens new window)
- https://v2tun.vercel.app (opens new window)
- https://sub.suda.cat (opens new window)
- https://oioio.cloud (opens new window)
- https://sub.hxlm.org (opens new window)
- https://ytoo.vercel.app (opens new window)
- https://ts.ek12.live (opens new window)
- https://agwa.page (opens new window)
- https://sublink.dev (opens new window)
- https://github.com/nitezs/sub2sing-box (opens new window)
其他
- https://github.com/hugetiny/awesome-vpn (opens new window)
- https://github.com/topics/fanqiang (opens new window)
- https://github.com/Anankke/SSPanel-Uim (opens new window)
- https://github.com/ValdikSS/GoodbyeDPI (opens new window)
- https://github.com/txthinking/brook (opens new window)
- https://github.com/trojan-gfw/trojan (opens new window)
- https://github.com/atrandys/trojan (opens new window)
- https://github.com/p4gefau1t/trojan-go (opens new window)
- https://github.com/NetchX/Netch (opens new window)
- https://github.com/TelegramMessenger/MTProxy (opens new window)
- https://github.com/Dreamacro/clash (opens new window)
- https://github.com/MetaCubeX (opens new window)
- https://github.com/Fndroid/clash_for_windows_pkg (opens new window)
- Clash for Windows 配置教程 (opens new window)
- https://github.com/Jrohy/cfw-updater (opens new window)
- https://github.com/zzzgydi/clash-verge (opens new window)
- https://github.com/keiko233/clash-nyanpasu (opens new window)
- https://github.com/clash-verge-rev/clash-verge-rev (opens new window)
- https://github.com/Z-Siqi/Clash-for-Windows_Chinese (opens new window)
- https://github.com/Loyalsoldier/clash-rules (opens new window)
- https://github.com/EAimTY/tuic (opens new window)
- https://github.com/juicity/juicity (opens new window)
- https://github.com/apernet/hysteria (opens new window)
- https://github.com/MetaCubeX/mihomo (opens new window)
- https://github.com/eycorsican/leaf (opens new window)
- https://github.com/YtFlow/Maple (opens new window)
- https://github.com/topics/traffic (opens new window)
- https://github.com/topics/proxifier (opens new window)
- https://github.com/XX-net/XX-Net (opens new window)
- 跨平台的设置代理客户端 https://www.proxifier.com (opens new window)
L6Z8A-XY2J4-BTZ3P-ZZ7DF-A2Q9C
(Portable Edition)5EZ8G-C3WL5-B56YG-SCXM9-6QZAP
(Standard Edition)P427L-9Y552-5433E-8DSR3-58Z68
(MAC)
- https://www.yogadns.com (opens new window)
- https://github.com/mellow-io/mellow (opens new window)
- SocksCap64 HOOK了Windows Sockets API https://www.sockscap64.com/sockscap64-official-homepage-chinese (opens new window)
- https://github.com/apify/proxy-chain (opens new window)
- https://github.com/klzgrad/naiveproxy (opens new window)
- https://github.com/gwuhaolin/lightsocks (opens new window)
- 端口转发 https://github.com/crabkun/switcher (opens new window)
- https://github.com/getlantern/lantern (opens new window)
- https://m.qq.com/edu/index.html (opens new window)
- https://github.com/mitmproxy/mitmproxy (opens new window)
- https://github.com/ClashDotNetFramework (opens new window)
- https://github.com/ginuerzh/gost (opens new window)
- Privoxy https://sourceforge.net/projects/ijbswa (opens new window)
- https://github.com/ssrlive/socks-hub (opens new window)
- https://github.com/3proxy/3proxy (opens new window)
- https://gitlab.com/openconnect/ocserv (opens new window)
- 洋葱浏览器 https://github.com/torproject (opens new window)
- https://github.com/haad/proxychains (opens new window)
- https://github.com/shikanon/socks5proxy (opens new window)
- https://github.com/esrrhs/spp (opens new window)
- https://github.com/esrrhs/pingtunnel (opens new window)
- 星云 https://github.com/slackhq/nebula (opens new window)
- https://gitlab.com/accessable-net/naiveproxy (opens new window)
- https://github.com/ValdikSS/GoodbyeDPI (opens new window)
- https://github.com/kubero-dev/ladder (opens new window)
- https://www.opera.com/zh-cn/features/free-vpn (opens new window)
- https://github.com/Hackl0us/SS-Rule-Snippet (opens new window)
OpenVPN/IPsec/SSLVPN/L2TP/PPTP/IKEv2/Tinc/MeshBird/P2P VPN
- https://github.com/OpenVPN (opens new window)
- OpenVPN-转载 (opens new window)
- 如何在 Ubuntu 16.04 上设置 OpenVPN 服务器 (opens new window)
- https://github.com/angristan (opens new window)
- https://github.com/hwdsl2/setup-ipsec-vpn (opens new window)
- https://github.com/xelerance/openswan (opens new window)
- https://github.com/libreswan/libreswan (opens new window)
- https://github.com/xelerance/xl2tpd (opens new window)
- https://sourceforge.net/projects/vtun (opens new window)
- https://github.com/mullvad (opens new window)
- https://github.com/ProtonVPN (opens new window)
- https://github.com/amnezia-vpn/amnezia-client (opens new window)
- Tinc VPN https://github.com/gsliepen/tinc (opens new window)
WireGuard
- https://github.com/WireGuard (opens new window)
- Web UI https://github.com/WeeJeWel/wg-easy (opens new window)
- https://github.com/TunSafe (opens new window)
- https://github.com/firezone/firezone (opens new window)
- https://github.com/teddysun/across (opens new window)
- 在 Ubuntu 上设置 WireGuard VPN (opens new window)
- WireGuard一键安装脚本 (opens new window)
- https://github.com/its0x08/wg-install (opens new window)
- https://github.com/wgredlong/WireGuard (opens new window)
- https://github.com/hongwenjun/vps_setup (opens new window)
- https://github.com/trailofbits/algo (opens new window)
- https://github.com/StreisandEffect/streisand (opens new window)
- https://github.com/brittson/wireguard_config_maker (opens new window)
shadowsocks
- https://github.com/shadowsocks (opens new window)
- https://github.com/shadowsocksrr (opens new window)
- https://github.com/ShadowsocksR-Live/shadowsocksr-native/wiki (opens new window)
- https://github.com/zhaoweih/Shadowsocks-Tutorial (opens new window)
- https://github.com/Jigsaw-Code (opens new window)
- https://github.com/go-ignite (opens new window)
- https://api.crhnode.top/subscribe/35394/8AkXSADklmY (opens new window)
- https://viencoding.com/ss-ssr-share (opens new window)
- https://github.com/Shadowsocks-NET (opens new window)
- https://github.com/deezertidal/shadowrocket-rules (opens new window)
- https://github.com/Johnshall/Shadowrocket-ADBlock-Rules-Forever (opens new window)
v2ray
- https://github.com/v2fly (opens new window)
- https://github.com/XTLS/Xray-core (opens new window)
- https://github.com/SagerNet/v2ray-core (opens new window)
- https://github.com/Qv2ray (opens new window)
- https://github.com/MatsuriDayo/nekoray (opens new window)
- https://github.com/zizifn/edgetunnel (opens new window)
- android https://github.com/2dust/v2rayNG (opens new window)
- https://github.com/XTLS/AnXray (opens new window)
- https://github.com/getsurfboard/surfboard (opens new window)
- https://github.com/hiddify/hiddify-next (opens new window)
- Windows https://github.com/2dust/v2rayN (opens new window)
- https://github.com/vrnobody/V2RayGCon (opens new window)
- https://github.com/bclswl0827/v2ray-heroku (opens new window)
- MAC https://github.com/yanue/V2rayU (opens new window)
- https://github.com/Cenmrev/V2RayX (opens new window)
- Linux https://github.com/jiangxufeng/v2rayL (opens new window)
- https://github.com/v2rayA (opens new window)
- OpenWrt https://github.com/kuoruan/openwrt-v2ray (opens new window)
- https://github.com/ToutyRater/v2ray-guide (opens new window)
- KubeSail免费无限制容器1核512MB內存搭建V2ray科学上网 (opens new window)
- v2ray-tools (opens new window)
- v2ray教程 (opens new window)
- V2Ray使用帮助 https://v2sx.github.io/Help (opens new window)
- https://github.com/mack-a/v2ray-agent (opens new window)
- https://github.com/233boy/v2ray/tree/master (opens new window)
- https://github.com/flyzy2005/ss-fly/tree/master (opens new window)
- https://github.com/KiriKira/vTemplate (opens new window)
- https://github.com/ToutyRater (opens new window)
- https://intmainreturn0.com/v2ray-config-gen (opens new window)
- https://github.com/wulabing/V2Ray_ws-tls_bash_onekey (opens new window)
- https://github.com/Jrohy/multi-v2ray (opens new window)
- https://github.com/FunctionClub/V2ray.Fun (opens new window)
- https://github.com/sprov065/v2-ui (opens new window)
- https://github.com/pengchujin/v2rayDocker (opens new window)
- https://github.com/leitbogioro/v2ray.fun (opens new window)
- https://github.com/crazypeace/V2ray_VLESS_WebSocket_TLS_CaddyV2 (opens new window)
- https://tools.sprov.xyz (opens new window)
- 客户端工具大全 https://github.com/V2Server/V2Ray (opens new window)
- https://github.com/i5g5vip/winXray-v3.6 (opens new window)
- https://github.com/pitech007/v2ray (opens new window)
- https://github.com/crazypeace/V2ray_VLESS_WebSocket_TLS_CaddyV2 (opens new window)
- https://github.com/hiifeng/V2ray-for-Doprax (opens new window)
# PAC
- https://github.com/topics/gfw (opens new window)
- https://github.com/topics/gfwlist (opens new window)
- https://github.com/topics/chinalist (opens new window)
- https://github.com/search?q=gfwlist2pac (opens new window)
- https://github.com/topics/anticensorship (opens new window)
- https://github.com/topics/censorship (opens new window)
- https://github.com/gfwlist (opens new window)
- https://github.com/JinnLynn/genpac (opens new window)
- https://github.com/lbp0200/mono_pac (opens new window)
- https://github.com/Loyalsoldier/v2ray-rules-dat (opens new window)
- https://github.com/Loukky/gfwlist-by-loukky (opens new window)
- https://github.com/cdlaimin/gfwlist2pac (opens new window)
- https://github.com/petronny/gfwlist2pac (opens new window)
- https://github.com/ACL4SSR/ACL4SSR (opens new window)
- https://github.com/Dreamacro/maxmind-geoip (opens new window)
- https://github.com/clowwindy/gfwlist2pac (opens new window)
- https://github.com/soffchen/sing-geosite (opens new window)
- https://github.com/StevenBlack/hosts (opens new window)
- https://github.com/Kisesy/gscan_quic (opens new window)
- https://github.com/googlehosts (opens new window)
- 谷歌翻译出现了“远程服务器没有响应”问题 (opens new window)
- Chrome谷歌浏览器翻译功能失效解决办法! (opens new window)
- 谷歌翻译不能用的解决方案 (opens new window)
https://translate.amz.wang translate.googleapis.com
- https://github.com/Ponderfly/GoogleTranslateIpCheck (opens new window)
- https://github.com/GoodCoder666/GoogleTranslate_IPFinder (opens new window)