frp 内网穿透
下载:https://github.com/fatedier/frp/releases
解压
服务端配置:
vim frps.toml
bindPort = 7000 auth.method = "token" auth.token = "1234567890" ~ ~ ~
直接启动服务端
./frps -c ./frps.toml
用pm2启动服务端
pm2 start -n frps ./frps -- -c ./frps.toml
客户端配置
serverAddr = "服务端IP" serverPort = 7000 uth.method = "token" auth.token = "1234567890" [[proxies]] name = "80" type = "tcp" localIP = "127.0.0.1" localPort = 80 remotePort = 7080 ~ ~ ~
直接启动客户端
./frpc -c ./frpc.toml
用pm2启动客户端
pm2 start -n frpc ./frpc -- -c ./frpc.toml