当前位置:   article > 正文

基于Docker的Frp内网穿透部署_snowdreamtech/frps

snowdreamtech/frps

1.准备云服务器

笔者这里是购买了腾讯云的服务器,购买方式较为简单,开箱即用!
Ubuntu18.04的系统,具体配置详情如下图所示。
在这里插入图片描述

2.公网服务器端配置

1.创建配置文件

# 创建存放目录
sudo mkdir /etc/frp
# 创建frps.ini文件
sudo vi /etc/frp/frps.ini
  • 1
  • 2
  • 3
  • 4

2.编写frps.ini文件内容

[common]
# 监听端口
bind_port = 7000
# 面板端口
dashboard_port = 7500
# 登录面板账号设置
dashboard_user = admin  #根据所需设置,我在这里设置为服务器的账号密码
dashboard_pwd = XXXXXXX 
# 设置http及https协议下代理端口(非重要)
vhost_http_port = 7080
vhost_https_port = 7081

# 身份验证,可以自己设置,建议设置复杂点。
token = 12345678
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

3.运行代码

#服务器镜像:snowdreamtech/frps
#重启:always
#网络模式:host
#文件映射:/etc/frp/frps.ini:/etc/frp/frps.ini
docker run --restart=always --network host -d -v /etc/frp/frps.ini:/etc/frp/frps.ini --name frps snowdreamtech/frps
  • 1
  • 2
  • 3
  • 4
  • 5

注意一下,如果还没有安装Docker的小伙伴可以食用这篇博客Ubuntu安装docker教程
Docker安装完成的界面
在这里插入图片描述
bug1:安装出现下面情况。
在这里插入图片描述
加上sudo语句

sudo docker run --restart=always --network host -d -v /etc/frp/frps.ini:/etc/frp/frps.ini --name frps snowdreamtech/frps
  • 1

在这里插入图片描述
4.放行端口
我们可以直接在腾讯云界面上手动放行端口,具体操作如下
在这里插入图片描述
根据具体使用端口放行即可。
在这里插入图片描述
5.查看启动是否成功
输入网址公网IP:7500查看
在这里插入图片描述
出现如下界面说明服务器端配置成功!

3.内网服务器端配置

1.下载frp包
frp的包 https://github.com/fatedier/frp/releases
在这里插入图片描述

我下载的是这个
在这里插入图片描述

2.配置frpc.ini文件
在这里插入图片描述
配置文件示例:

[common]
# server_addr为FRPS服务器IP地址
server_addr = x.x.x.x
# server_port为服务端监听端口,bind_port
server_port = 7000
# 身份验证
token = 12345678

[ssh]
type = tcp
local_ip = 127.0.0.1
local_port = 22
remote_port = 2288

# [ssh] 为服务名称,下方此处设置为,访问frp服务段的2288端口时,等同于通过中转服务器访问127.0.0.122端口。
# type 为连接的类型,此处为tcp
# local_ip 为中转客户端实际访问的IP 
# local_port 为目标端口
# remote_port 为远程端口

[ssh]
type = tcp
local_ip = 192.168.1.229
local_port = 80
remote_port = 18022

[unRAID web]
type = tcp
local_ip = 192.168.1.229
local_port = 80
remote_port = 18088

[Truenas web]
type = tcp
local_ip = 192.168.1.235
local_port = 80
remote_port = 18188

[speedtest]
type = tcp
local_ip = 192.168.1.229
local_port = 6580
remote_port = 18190


[webdav]
type = tcp
local_ip = 192.168.1.235
local_port = 18080
remote_port = 18189

[RDP PC1]
type = tcp
local_ip = 192.168.1.235
local_port = 3389
remote_port = 18389
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56

根据自己需求进行配置即可
4.启动frp服务

#内网服务器端
#临时启动
./frpc -c ./frpc.ini
#后台保持启动
nohup ./frpc -c ./frpc.ini &
  • 1
  • 2
  • 3
  • 4
  • 5

suceess!!!
在这里插入图片描述

BUG1
在这里插入图片描述
解决方案
在这里插入图片描述

4.XShell和Xftp连接使用

XShell
在这里插入图片描述

Xftp
原理与上方XShell连接方式相同。输入公网IP+端口。接着输入用户名密码就可以连接上啦★,°:.☆( ̄▽ ̄)/$:.°★

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/85046
推荐阅读
相关标签
  

闽ICP备14008679号