frp内网穿透
frps.ini 服务端
[common]
bind_port = 10010
dashboard_user = admin
dashboard_pwd = 123456
#管理后台的端口
dashboard_port = 7500
# ssh 要转发的端口
# vhost_ssh_port = 33389
# http 要转发的端口
vhost_http_port = 33389
#心跳
heartbeat_timeout = 30
运行命令:./frps -c frps.ini
后台进程运行:nohup ./frps -c frps.ini >/dev/null 2>&1 &
frpc.ini 客户端
[common]
server_addr = 服务端ip
server_port = 10010
[SSH]
type = http
local_ip=192.168.1.17
# 转发的服务端口
local_port = 8080
# 公网的端口
remote_port=33389
custom_domains=服务端ip
运行命令:.frpc.exe -c frpc.ini