内网穿透工具 frps
下载 linux 服务器的 软件,跳板
https://github.com/fatedier/frp/releases
选择linux amd内核的gz软件
解压缩到 linux 服务器,修改 frps.ini,设置配置信息
[common]
bind_port = 7000
dashboard_port = 7500
token = xxxxx
设置 文件可运行
chmod +x frps
运行 程序
./frps -c ./frps.ini
查看使用情况
http://ip:7500
客户端使用
下载 windows 的 安装包或者mac的 drawwin 的安装包。uname -e 可查看内核情况
客户端配置 frpc.ini
[common]
server_addr = your_server_ip
server_port = 7000
token = your_authentication_token
[ssh]
type = tcp
local_ip = your_local_ip
local_port = 22
remote_port = 6000
运行
./frpc -c frpc.ini