# 内网穿透
# 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)
- 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://github.com/ntop/n2n (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)
# 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)
# 获取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 = woytu.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/lasoychina/v2ray_booking (opens new window)
- https://github.com/txthinking/brook (opens new window)
- https://github.com/atrandys/trojan (opens new window)
- OpenVPN-转载 (opens new window)
- https://github.com/NetchX/Netch (opens new window)
- https://github.com/whunt1/onekeymakemtg (opens new window)
- https://github.com/bannedbook/fanqiang (opens new window)
- https://github.com/vpncn/vpncn.github.io (opens new window)
- https://github.com/ssrsub/ssr/tree/master (opens new window)
- https://github.com/pojiezhiyuanjun/freev2 (opens new window)
- https://github.com/t9080 (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/ntkernel/lantern (opens new window)
- https://github.com/ugvf2009/Miles (opens new window)
- https://github.com/imba-tjd/freess/tree/dev (opens new window)
- https://github.com/fqshare/free-ssr-v2ray-vpn (opens new window)
- https://free-ss.site (opens new window)
- https://view.freev2ray.org (opens new window)
- https://github.com/CSE2018-2019/VMESS (opens new window)
- https://github.com/freefq/free (opens new window)
- https://v2ray.banyunxiaoxi.ml (opens new window)
- https://cv2ray.xyz (opens new window)
- https://t.me/s/ssrshares (opens new window)
- https://t.me/s/mtplinks (opens new window)
- https://t.me/s/socks5list (opens new window)
- https://t.me/s/SSRSUB (opens new window)
- https://t.me/s/mtpclub (opens new window)
- https://t.me/s/FQ_FREE (opens new window)
订阅转换器
- https://github.com/CareyWang/sub-web (opens new window)
- https://github.com/tindy2013/subconverter (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://acl4ssr-sub.github.io (opens new window)
WireGuard
- https://github.com/WireGuard (opens new window)
- https://github.com/teddysun/across (opens new window)
- WireGuard一键安装脚本 (opens new window)
- https://github.com/wgredlong/WireGuard (opens new window)
- https://github.com/hongwenjun/vps_setup (opens new window)
shadowsocks
- https://github.com/shadowsocks (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://api.crhnode.top/subscribe/35394/8AkXSADklmY (opens new window)
- https://viencoding.com/ss-ssr-share (opens new window)
v2ray
- v2ray-tools (opens new window)
- v2ray教程 (opens new window)
- V2Ray使用帮助 https://v2sx.github.io/Help (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/v2fly (opens new window)
- https://github.com/v2ray (opens new window)
- https://github.com/XTLS/Xray-core (opens new window)
- android https://github.com/2dust/v2rayNG (opens new window)
- Windows https://github.com/2dust/v2rayN (opens new window)
- https://github.com/Qv2ray/Qv2ray (opens new window)
- https://github.com/vrnobody/V2RayGCon (opens new window)
- https://github.com/bclswl0827/v2ray-heroku (opens new window)
- 在 Heroku 搭建 V2Ray (opens new window)
- KubeSail免费无限制容器1核512MB內存搭建V2ray科学上网 (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://tools.sprov.xyz (opens new window)
- 客户端工具大全 https://github.com/V2Server/V2Ray (opens new window)
- https://github.com/i5g5vip/winXray-v3.6 (opens new window)
# PAC
- https://github.com/JinnLynn/genpac (opens new window)
- https://github.com/lbp0200/mono_pac (opens new window)
- https://github.com/gfwlist (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)