作者:博瑞恩张更新 | 来源:互联网 | 2023-09-15 14:02
小皮球ngrok做内网穿透1.下载注册客户端2.获取token3.修改ngrok.conf配置文件4.启动ngrok5.运行forwarding行的地址1.下载注册客户端登录ht
小皮球ngrok做内网穿透
- 1.下载注册客户端
- 2.获取token
- 3.修改ngrok.conf配置文件
- 4.启动ngrok
- 5.运行forwarding行的地址
1.下载注册客户端
登录https://manager.xiaomiqiu.com/,首页选择下载适合自己的客户端,我的是windows64版的,所以直接选择改客户端下载,下载完成,解压到自己的目录中
2.获取token
token位置如下图
引用文本
3.修改ngrok.conf配置文件
将token粘贴至ngrok.conf文件中的auth_token,修改对应的值,其中remote_pot和http中的端口对应我们自己对外开放的端口值,subdomain可任意配置
server_addr: "ngrok2.xiaomiqiu.cn:5432"
trust_host_root_certs: true
inspect_addr: disabled
auth_token: "9b5ZZ239c7Z5463A83f3ecbee2358983"
tunnels:httptun:remote_port: 80subdomain: herongproto:http: 127.0.0.1:80
4.启动ngrok
cmd命令行进入目录,执行以下命令
ngrok -config=ngrok.cfg -subdomain herong 80
5.运行forwarding行的地址