内网穿透-无需公网服务器
[toc]
# 环境
Ubuntu系统电脑,想在公网连接访问
# 使用教程
官网:https://www.cpolar.com/ (opens new window)
# 1.下载安装
curl -L https://www.cpolar.com/static/downloads/install-release-cpolar.sh | sudo bash
1
# 2. 查看版本号,有正常显示版本号即为安装成功
cpolar version
1
# 登录验证
打开网站https://dashboard.cpolar.com/auth (opens new window)
进入验证页面,这里就是验证token
# tcp穿透22端口
# 前台启动
cpolar tcp 22
1
运行会返回
cpolar by @bestexpresser (Ctrl+C to quit)
Tunnel Status online
Account test01234 (Plan: Free)
Version 3.12/3.22
Web Interface 127.0.0.1:4040
Forwarding tcp://19.tcp.cpolar.top:12830 -> tcp://127.0.0.1:22
# Conn 0
Avg Conn Time 0.00ms
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
前台启动可以直接看到端口
# 后台启动
nohup cpolar tcp 22 &
1
后台启动后再页面https://dashboard.cpolar.com/status (opens new window)查看到映射的域名
使用给的域名和端口即可ssh访问服务器
# 5. 向系统添加服务(开机自启动)
sudo systemctl enable cpolar
1
# 6. 启动cpolar服务
sudo systemctl start cpolar
1
# 7. 查看服务状态
sudo systemctl status cpolar
1
上次更新: 2023/10/08, 09:37:38