革命的果实最香甜~~
劳动的人民最光荣~~
经过一下午的鼓捣,终于实现了ngrok内网穿透部署
域名一定要使用二级域名
一级域名为 baidu.com
二级域名为 xxx.baidu.com不要用已经被占用的二级域名
建议重新解析一个,反正不花钱对不对
不然会出现莫名其妙的错误
以下文中 主域名 皆为 二级域名 :test.baidu.com
次域名 为 :ngrok.test.baidu.com
PS:此处描述并不准确,请翻至最后参阅
防火墙记得要关掉,忘记的话你会恶心的一批
yum install mercurial git gcc golang ntp
服务端和客户端都要,不然会有恶心的错误
ntpdate cn.pool.ntp.org
由于2.x版本好像不开源了,所以我们用1.7,这个git不是官方版,但是比官方版好用 XD
感谢开源社区,开源万岁!
git clone https://github.com/tutumcloud/ngrok.git ngrok
export NGROK_DOMAIN="主域名"
cd ngrok
openssl genrsa -out rootCA.key 2048
openssl req -x509 -new -nodes -key rootCA.key -subj "/CN=$NGROK_DOMAIN" -days 5000 -out rootCA.pem
openssl genrsa -out server.key 2048
openssl req -new -key server.key -subj "/CN=$NGROK_DOMAIN" -out server.csr
openssl x509 -req -in server.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out server.crt -days 5000
cp rootCA.pem assets/client/tls/ngrokroot.crt
cp server.crt assets/server/tls/snakeoil.crt
cp server.key assets/server/tls/snakeoil.key
这里我主要是生成了 arm 和 Linux 的版本。继续在原先的目录下:
#默认是linux 64位,和我一样
#我的客户端是树莓派
make release-server
GOOS=linux GOARCH=arm make release-client
# linux + win + mac + arm 配置
#GOOS=linux GOARCH=amd64 make release-client release-server
#GOOS=windows GOARCH=amd64 make release-client release-server
#GOOS=darwin GOARCH=amd64 make release-client release-server
#GOOS=linux GOARCH=arm make release-client release-server
不同平台使用不同的 GOOS 和 GOARCH,前面的编译选项就是指 go os , go 编译出来的操作系统 (windows,linux,darwin) ;go arch, 对应的构架 (386,amd64,arm)
Linux 平台 64 位系统:GOOS=linux GOARCH=amd64
Windows 平台 64 位系统:GOOS=windows GOARCH=amd64
MAC 平台 64 位系统:GOOS=darwin GOARCH=amd64
编译成功后会在ngrok/bin下生成ngrokd、ngrok两个文件,前者是服务端程序,后者是客户端程序。
生成的执行文件由于版本不同可能在不同文件夹内 ,如树莓派客户端在 linux_arm 内,请自行判断
可选方案:
FTP需要搭建
推荐lyzsz
没有办法的情况下用git
不再赘述
server_addr: 主域名:4443
trust_host_root_certs: false
#服务端操作均在ngrok目录下
./bin/ngrokd -tlsKey=server.key -tlsCrt=server.crt -domain="主域名" -httpAddr=":8081" httpsAddr=":8082"
#服务端启动成功信息
./bin/ngrokd -tlsKey=server.key -tlsCrt=server.crt -domain="主域名" -httpAddr=":8081" httpsAddr=":8082"
[19:43:13 CST 2018/09/04] [INFO] (ngrok/log.(*PrefixLogger).Info:83) [registry] [tun] No affinity cache specified
[19:43:13 CST 2018/09/04] [INFO] (ngrok/log.Info:112) Listening for public http connections on [::]:8081
[19:43:13 CST 2018/09/04] [INFO] (ngrok/log.Info:112) Listening for public https connections on [::]:443
[19:43:13 CST 2018/09/04] [INFO] (ngrok/log.Info:112) Listening for control and proxy connections on [::]:4443
[19:43:13 CST 2018/09/04] [INFO] (ngrok/log.(*PrefixLogger).Info:83) [metrics] Reporting every 30 seconds
#linux
./ngrok -config ./ngrok.cfg -subdomain 次域名前缀(如:ngrok) -proto http 80
#windows
ngrok.exe -subdomain=次域名前缀(如:ngrok) -config=ngrok.cfg 80
这个二级域名前缀最好一样,避免莫名其妙的报错
日志: -log=ngrok_log.txt 是记录ngrok的日志,如果前期调试的时候加上这个参数,如果不能访问就可以查看到底是什么问题
如下
./ngrok -log=ngrok_log.txt -config ./ngrok.cfg -subdomain 次域名前缀(如:ngrok) -proto http 80./ngrok
#客户端启动成功信息
ngrok (Ctrl+C to quit)
Tunnel Status online
Version 1.7/1.7
Forwarding http://ngrok.test.baidu.com(次域名):8081 -> 127.0.0.1:80
Web Interface 127.0.0.1:4040
# Conn 1
Avg Conn Time 66092.96ms
HTTP Requests
-------------
GET / 304 Not Modified
GET / 200 OK
Tunnel Status 为 online 即为链接成功
如果出现reconnecting
请您自求多福
发现退出终端后链接会自动断开
于是找了许多后台运行进程的资料
成果如下
nohup ./bin/ngrokd -tlsKey=server.key -tlsCrt=server.crt -domain="主域名" -httpAddr=":8081" httpsAddr=":8082" &
[1] 1784
nohup: 忽略输入并把输出追加到"nohup.out"
#使用tail查看日志输出
tail -f nohup.out
#1784为进程ID
ps aux | grep ngrok
#使用 kill 结束进程
✗ kill -9 1784
setsid ./ngrok -log=ngrok_log.txt -config ./ngrok.cfg -subdomain ngrok -proto http 80
ps aux | grep ngrok
kill -9 1744
这样即使不链接服务器也能保持平稳运行
假定你的域名为 baidu.com
#服务端设定domain 域名 为 baidu.com
nohup ./bin/ngrokd -tlsKey=server.key -tlsCrt=server.crt -domain="域名" -httpAddr=":8081" httpsAddr=":8082" &
#客户端subdomain hostname 为 ngrok
setsid ./ngrok -log=ngrok_log.txt -config ./ngrok.cfg -subdomain ngrok -proto http 80
#访问域名即为 ngrok.baidu.com
-----------------------------------------------------
#若服务端设定domain 域名 为 test.baidu.com
nohup ./bin/ngrokd -tlsKey=server.key -tlsCrt=server.crt -domain="域名" -httpAddr=":8081" httpsAddr=":8082" &
#客户端subdomain hostname 为 ngrok
setsid ./ngrok -log=ngrok_log.txt -config ./ngrok.cfg -subdomain ngrok -proto http 80
#访问域名即为 ngrok.test.baidu.com
##注意 无论是 ngrok.baidu.com 还是 ngrok.test.baidu.com
##最终访问的域名 必须在 域名商 处进行解析!!!