赞
踩
折腾了好久终于可以访问了 后边尝试绑定域名和EXSI也做frp
1.云服务器(我这里用的阿里云,有学生认证免费服务器而且默认会打开ssh)
2.群晖的nas
1.通过ssh登录服务器后先下载frp工具包
curl -# -LJO https://github.com/fatedier/frp/releases/download/v0.34.3/frp_0.34.3_linux_amd64.tar.gz
2.解压工具包
tar -zxvf frp_0.34.3_linux_amd64.tar.gz
3.配置frps.ini这个配置文件
vi frps.ini
4.以下是我的配置(直接复制修改一下)
- [common]
- # frps和frpc两边通信的端口号
- bind_port = 7000
-
- # frps和frpc通信的密码 (s和c 两边需要一致才可以访问)
- token = xxxxxx
-
- # 自定义域名(可以不配置)
- ubdomain_host = xxxxxxxxxx
-
- # 仪表盘配置(可以不配置)
- dashboard_port = 750
- dashboard_user = admin
- dashboard_pwd = 123456
5.【esc】:wq 保存退出
6.运行服务端frp
./frps -c frps.ini
7.配置开机自启动
sudo vim /lib/systemd/system/frps.service
8.frps.service配置
- [Unit]
- Description=frp server
- After=network.target
-
- [Service]
- Type=simple
-
- ExecStart=/[your path]/frps -c /[your path]/frps.ini #把[your path]换成你自己的frps的路径
- ExecReload=/bin/kill -s HUP $MAINPID
- ExecStop=/bin/kill -s QUIT $MAINPID
-
- [Install]
- WantedBy=multi-user.target
9.启动frps 并且打开自启动 (这里提供一些其他操作)
- sudo systemctl start frps
- sudo systemctl enable frps
- # 查看状态和日志信息
- # sudo systemctl status frps
- # 重启frps
- # sudo systemctl restart frps
- # 停止frps
- # sudo systemctl stop frps
10.重启服务器ps auxw看下frps是否在运行,运行就ok了
1.docker安装frpc (选择0.34.3这个版本(需要和服务端对应版本))
2.设置配置文件路径(先通过ssh创建一个frpc.ini的配置文件)
3.frpc.ini配置(server_addr为服务器公网IP local_ip为群晖内网地址)
- [common]
- # 远程服务器地址
- server_addr = xxx.xxx.xxx.xxx
- # 远程服务器地址端口号
- server_port = 7000
- token = xxxxxx
- # 客户端监控(可以不配置)
- admin_addr = xxx.xxx.xxx.xxx
- admin_port = 7200
- admin_user = admin
- admin_pwd = 123456
-
- [DSM http]
- type = tcp
- local_ip = xxx.xxx.xxx.xxx
- # 监听本地端口
- local_port = 5000
- # frps远端端口
- remote_port = 6001 #这里用5000访问不了,原因不清楚有大佬可以指点一下吗
-
-
- [DSM https]
- type = tcp
- local_ip = xxx.xxx.xxx.xxx
- # 监听本地端口
- local_port = 5001
- # frps远端端口
- remote_port = 6002
-
- [ssh]
- type = tcp
- local_ip = xxx.xxx.xxx.xxx
- local_port = 22
- remote_port = 2222
-
- [jellyfin]
- type = tcp
- local_ip = xxx.xxx.xxx.xxx
- local_port = 8096
- remote_port = 8096
-
4.启动docker 就可以去网站上用你的公网IP+6001的端口访问群晖了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。