内网穿透之 ngrok
内网穿透之 ngrok
作用
暴露本地 web 服务到公网
快速启动
安装 ngrok 客户端
mac
复制代码
Linux
复制代码
Windows
复制代码
创建 ngrok 帐号
ngrok 官网注册账号客户端配置授权码
复制代码
启动 ngrok
复制代码
其中 8000 为对应本地 web 服务端口号
命令行输出
复制代码
其中 https://84c5df439d74.ngrok-free.dev
即为外网访问地址。
本文字数:656 字
阅读完需:约 2 分钟
暴露本地 web 服务到公网
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 config add-authtoken TOKEN
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 加入
还未添加个人简介
促进软件开发及相关领域知识与创新的传播
评论