内网穿透–ngrok的简单使用
下载ngrok
https://ngrok.com/download
下载一个符合自己操作系统版本的ngrok
解压
linux下的话,unzip /path/to/ngrok.zip
设置authtoken
访问https://dashboard.ngrok.com/auth来获得你的authtoken
然后到对应的目录下,运行
./ngrok authtoken <YOUR_AUTH_TOKEN>
启用
./ngrok http 80
穿透映射到80端口
可以看到以下运行结果
1 2 3 4 5 6 7 8 9 10 11 12
| ngrok by @inconshreveable (Ctrl+C to quit) Session Status online Account dcLunatic (Plan: Free) Version 2.2.8 Region United States (us) Web Interface http://127.0.0.1:4040 Forwarding http://14ac334c.ngrok.io -> localhost:80 Forwarding https://14ac334c.ngrok.io -> localhost:80 Connections ttl opn rt1 rt5 p50 p90 0 0 0.00 0.00 0.00 0.00
|
访问http://14ac334c.ngrok.io
即可