有些事不能靠别人,更多的是靠自己

前提需要有一台公网服务器,ip 在以下配置中称为 server_ip

1、local 方式(适用本地部署 stf,公网访问)

内网穿透配置,使用 frp 或其他内网穿透工具

# frps.ini

[common]
bind_port = 7000
authentication_method = token
token = your_token
allow_ports = 7400-7600,7100,7110
vhost_http_port = 7100
# frpc.ini

[common]
server_addr = server_ip
server_port = 7000
token = your_token

[stf_web]
type = http
local_port = 7100
custom_domains = server_ip_or_domain

[range:stf]
type = tcp
local_ip = 127.0.0.1
local_port = 7400-7420 # 取决于设备数量,约2口/台
remote_port = 7400-7420 # 取决于设备数量

[stf_websocket]
type = tcp
local_ip = 127.0.0.1
local_port = 7110
remote_port = 7110

stf 启动

stf local --public-ip server_ip_or_domain --allow-remote


↙↙↙阅读原文可查看相关链接,并与作者交流