1.刷Padavan固件

原帖地址:http://www.right.com.cn/FORUM/thread-161324-1-1.html

下载地址:http://opt.cn2qq.com/padavan/

 

2.Frps内网穿透

原帖地址:http://koolshare.cn/thread-65379-1-1.html

花生壳的内网穿透虽然好用,内网版设置很简单,但是不能多端口(要钱QAQ),所以还是用自己的服务器来弄吧。

#安装命令
wget --no-check-certificate https://raw.githubusercontent.com/clangcn/onekey-install-shell/master/frps/install-frps.sh -O ./install-frps.sh
chmod 700 ./install-frps.sh
./install-frps.sh install

#更新命令
./install-frps.sh update

#卸载命令
./install-frps.sh uninstall

服务端基本没什么设置的了,如果遇到超时,就设置服务器时间或者authentication_timeout=0

如果Authorization failed就要看一下token是否匹配了 在服务端/客户端加上privilege_token

 

frps一键脚本的作者跟不上更新了,只能去github自己折腾

地址:https://github.com/fatedier/frp

使用方式:https://www.506064.com/tool/zztool/3682.html

后台运行需要用到screen命令

screen -S frp
./frps -c ./frps.ini

或者也可以先使用脚本安装配置好Frps然后在github下载最新的Frps文件然后替换掉/usr/local/frps/里的frps文件

 

路由器frpc设置如下:

[common]
server_addr = frps服务端地址
server_port = 服务端端口
token = 
privilege_token = 
authentication_timeout = 0

log_file = /dev/null
log_level = info
log_max_days = 3

[range:ftp]
#ftp要加关键字range来映射被动模式下的端口范围
type = tcp
local_ip = 192.168.1.1
local_port = 21,50000-50003 #后来改了40000-40004
remote_port = 9021,50000-50003
custom_domains = 访问域名

[web]
type = http
local_ip = 192.168.1.1
local_port = 80
remote_port = 9080
custom_domains =

关于穿透ftp的还需要设置一下端口转发

ftp.jpg