下载 frp
https://github.com/fatedier/frp
https://gofrp.org/docs/ > https://sspai.com/post/64377 > https://sspai.com/post/52523
Frps 配置 frps.ini
1 2 3 4 5 6 7 8 9 10 11 12 13
| [common] bind_port = 7000 ;本地绑定端口,frps占用 dashboard_port = 7500 ;监控面板端口,监控面板占用
dashboard_user = ? ;监控面板登录用户 dashboard_pwd = ? ;监控面板登录密码
vhost_http_port = 10080 ;http绑定主机端口 vhost_https_port = 10443 ;https绑定主机端口
token = ? ;客户端需要配置一样才可链接 subdomain_host = josway.cc ;分子域名时使用
|
Frpc 配置 frpc.ini
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| [common] server_addr = josway.cc ;服务端ip或域名 server_port = 7000 ;服务端端口号 token = ? ;服务端配置的token
; [web] ; type = http ;http协议默认80端口 ; local_port = 8088 ;本地服务端口号 ; subdomain = test ;远程访问子域名,完整地址为 subdomain.subdomain_host Example:test.josway.cc
[tcp] local_port = 8088 ;本地服务端口号 remote_port = 18088 ;远程访问端口号,完整地址为 server_addr:remote_port Example:josway.cc:18088
|