frps.ini 配置
[common]
bind_port = 7000
vhost_http_port = 38082
frpc.ini配置
[common]
server_addr = 公网服务器IP
server_port = 7000
[ssh]
type = tcp
local_ip = 127.0.0.1
local_port = 22
remote_port = 6000
[web]
type = http
local_port = 8082
custom_domains = 公网服务器IP
frp后台启动
nohup ./frps -c frps.ini > frps.log &
nohup ./frpc -c frpc.ini > frpc.log &
frp停止
ps -aux|grep frp| grep -v grep
kill -9 进程号
本文详细介绍了如何配置frps和frpc以实现内网穿透。配置文件包括frps.ini和frpc.ini,分别设置服务器端和客户端的参数,如bind_port、server_addr、local_ip和remote_port等。通过后台启动frp服务,并提供了停止服务的命令。此教程对于需要从公网访问内网服务的用户非常实用。
2804

被折叠的 条评论
为什么被折叠?



