openwrt/Lede 安装 及 配置 frps

  1. ngrok 2开始不开源了,所以用frp吧。可惜没有frps 的 luci界面,就只能自己修改配置了
  2. 安装
    系统 - 软件 - 搜索 frps - 安装

如果搜不到 添加 源

      src/gz openwrt_packages https://openwrt.proxy.ustclug.org/snapshots/packages/x86_64/packages
  1. 配置
    ssh 进入 或者 使用 TTYD
    编辑 /etc/config/frps
root@OpenWrtx86-64:/tmp# cat /etc/config/frps
config init
    option stdout 1
    option stderr 1
    option user frps
    option group frps
    option respawn 1
#   OS environments pass to frp for config file template, see
#   https://github.com/fatedier/frp#configuration-file-template
#   list env 'ENV_NAME=value'
#   Config files include in temporary config file.
#   list conf_inc '/etc/frp/frps.d/frps_full.ini'

config conf 'common'
    option bind_port 7000 #监听端口 默认7000
    option dashboard_addr 0.0.0.0 #监听地址
    option dashboard_port 7443   #frps 看板端口
    option token YOURTOKEN #frps 连接令牌
    option dashboard_user YOURNAME #frps看板登陆名
    option dashboard_pwd PASSWORD  #frps看板登陆密码

#   List options with name="_" will be directly appended to config file
#   list _ '# Key-A=Value-A'

系统 - 软件 - 启动项 - frps - 重启。 访问 路由器的端口7443 能看到看板了

调试(如果不正常)

终端运行
frps -c /var/etc/frps.ini
看看结果,然后问谷歌吧

PS: 修改 /var/etc/frps.ini 是没用的,重启就会恢复默认
更多选项请看官方源码有中文 https://github.com/fatedier/frp

你可能感兴趣的:(openwrt/Lede 安装 及 配置 frps)