写点什么

内网穿透之 ngrok

作者:陈皮
  • 2023-08-01
    北京
  • 本文字数:656 字

    阅读完需:约 2 分钟

内网穿透之 ngrok

作用

暴露本地 web 服务到公网

快速启动

安装 ngrok 客户端

mac



brew install ngrok/ngrok/ngrok
复制代码


Linux



curl -s https://ngrok-agent.s3.amazonaws.com/ngrok.asc | \ sudo tee /etc/apt/trusted.gpg.d/ngrok.asc >/dev/null && \ echo "deb https://ngrok-agent.s3.amazonaws.com buster main" | \ sudo tee /etc/apt/sources.list.d/ngrok.list && \ sudo apt update && sudo apt install ngrok
复制代码


Windows



choco install ngrok
复制代码

创建 ngrok 帐号

ngrok 官网注册账号客户端配置授权码



ngrok config add-authtoken TOKEN
复制代码

启动 ngrok


ngrok http 8000
复制代码


其中 8000 为对应本地 web 服务端口号


命令行输出



ngrok (Ctrl+C to quit) Session Status online Account inconshreveable (Plan: Free) Version 3.0.0 Region United States (us) Latency 78ms Web Interface http://127.0.0.1:4040 Forwarding https://84c5df439d74.ngrok-free.dev -> http://localhost:8000 Connections ttl opn rt1 rt5 p50 p90 0 0 0.00 0.00 0.00 0.00
复制代码


其中 https://84c5df439d74.ngrok-free.dev 即为外网访问地址。

其他配置参考官网文档

用户头像

陈皮

关注

还未添加个人签名 2018-04-26 加入

还未添加个人简介

评论

发布
暂无评论
内网穿透之 ngrok_陈皮_InfoQ写作社区