SJO节点已部署Frp,可以根据以下参数进行客户端配置以体验内网穿透
访问replace-your-subdomain+.minir.plus ====> localhost Frpc 80端口
客户端部署方式
创建文件夹
1 2 |
mkdir frp cd frp |
下载源码
1 |
wget https://github.com/fatedier/frp/releases/download/v0.24.1/frp_0.24.1_linux_amd64.tar.gz |
(其他版本)
解压
1 2 3 |
tar xzvf frp_0.24.1_linux_arm.tar.gz cp frpc ~/frp cp frpc.ini ~/frp |
配置
frpc.ini
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
[common] server_addr = sjo.minirplus.com server_port = 7000 log_file = frpc.log log_level = debug log_max_days = 7 token = minirplus user = replace-your-name protocol = tcp [web] type = http local_port = 80 subdomain = replace-your-subdomain |
运行
前台运行
1 |
./frpc -c ./frpc.ini |
后台运行
1 |
nohup ./frpc -c ./frpc.ini >> frp.log 2>&1 & |
使用
访问配置中设置的replace-your-subdomain+.minir.plus,可以访问内网frpc所在的80端口web服务
There are no comments yet