内网穿透、反向代理 frp
与ngrok相比frp有以下优点:
- 不用编译
- 可以做反向代理
- 支持token认证
- 不用预先绑定域名
- 功能丰富
在centos7上部署服务端:
包下载地址:https://github.com/fatedier/frp/releases
简单配置:
vim frps.ini
[common] bind_port = 7000 token = 123456 tcp_mux = true vhost_http_port = 7001 vhost_https_port = 7002
启动
./frps -c frps.ini
windows上部署客服端:
简单配置:
打开frpc.ini
[common] server_addr = "服务端IP" server_port = 7000 token = 1234546 [rdp] type = tcp local_ip = 192.168.1.169 local_port = 3389 remote_port = 7003
启动
打开PowerSell
.\frpc.exe -c .\frpc.ini