当前位置:   article > 正文

【Linux笔记】Linux 使用 Frp_frpc linux

frpc linux

一、获取Frp

进入 Frp 下载或者复制连接地址

下载下来上传到 Linux 中

若复制链接地址的话,进入 Linux 输入以下命令

wget https://github.com/fatedier/frp/releases/download/v0.44.0/frp_0.44.0_linux_amd64.tar.gz
  • 1

二、解压安装

1、解压压缩包

tar -zxvf frp_0.44.0_linux_amd64.tar.gz
  • 1

2、进入目录

cd frp_0.44.0_linux_amd64	# 进入解压的目录
  • 1

三、开启服务

1、服务器模式

编辑 frps.ini 文件

vim frps.ini
  • 1

编辑文件内容

[common]
bind_port = 7000
token = 123456

dashboard_port = 7500
dashboard_user = admin
dashboard_pwd = admin
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

参考以下文件进行定制化编辑

[common]
# 服务监听的ip
bind_addr = 0.0.0.0

# 服务监听端口 (*)
bind_port = 7000
# 防止被随意注册 (*)
token = 123456

# 访问web服务需要用到的端口
vhost_http_port = 8001
# https需要用到的端口
vhost_https_port = 443

# 指定 Dashboard 的监听的 IP 地址
dashboard_addr = 0.0.0.0
# 指定 Dashboard 的监听的端口
dashboard_port = 7500
# 指定访问 Dashboard 的用户名
dashboard_user = admin
# 指定访问 Dashboard 的端口
dashboard_pwd = admin

# 日志的记录级别,分为debug, info, warn, error四级,日志保存的天数,默认3天
log_file = ./frps.log
log_level = info
log_max_days = 3

# 心跳配置,默认的心跳配置时间是30
heartbeat_timeout = 30
# frp内网穿透服务端监听的端口,如果不设置的话,所有端口都可以连接使用,但为为了不占用系统使用的端口号,建议设置允许的坚挺端口,比如www.chuantou.org提供的内网穿透服务器就是开放50000-60000端口
# privilege_allow_ports = 2000-3000,3001,3003,4000-50000

# 连接池的数量,如果frp内网穿透客户端设置的连接池的数量大于下面的数值,就会修改frp客户端的连接池为下面的数值
max_pool_count = 100
# 每个客户端最大可以使用的端口,0表示无限制
max_ports_per_client = 0       

# frp内网穿透服务端frps和frp内网穿透的客户端frpc两台电脑的时间差,如果设置为0的话,不校验时间差异,默认校验时间差为900秒。
authentication_timeout = 900

# 是否使用tcp复用,默认为true;
# frp只对同意客户端的连接进行复用;
tcp_mux = true
  • 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

2、客户端模式

编辑 frpc.ini 文件

vim frpc.ini
  • 1

编辑文件内容

[common] 
server_addr = xx.xx.xx.xx
server_port = 65534
token = 123456

[homeassistant]
type = tcp
local_ip = 127.0.0.1
local_port = 8123
remote_port = 8123
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

参考以下文件进行定制化编辑

[common] 
server_addr = xx.xx.xx.xx
# 服务端IP
server_port = 7000
# 服务端端口
token = 123456
# 防止被随意注册

# 服务名称
[name] 
# 服务类型 可选:tcp,udp,http,https,stcp,xtcp
type = tcp
# 本地监听IP
local_ip = 127.0.0.1
# 本地监听端口
local_port = 22
# 远程监听端口
remote_port = 6001
# 穿透通讯加密
use_encryption = false
# 穿透通讯压缩
use_compression = false
# 分配自定义域名访问穿透服务
custom_domains = demo.com
# 分配对应穿透应用服务唯一的子域名,用于访问
subdomain = abc123
# HTTP协议用户名
http_user = admin
# HTTP协议密码
http_pwd = admin
# 此参数用于进一步验证,本地访问穿透服务的安全连接,需要双方frpc客户端都需要配置,仅适用于stcp和xtcp协议类型。
sk = abcdefg
  • 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

3、启动服务

添加程序执行权限

chmod a+x frps frpc
  • 1

服务器模式命令

./frps -c frps.ini
  • 1

客户端模式命令

./frpc -c frpc.ini
  • 1

四、服务端自启动

编辑服务程序

sudo nano /etc/systemd/system/frps.service
  • 1

输入以下内容

[Unit]
Description=Frp server
After=network.target
Wants=network.target
 
[Service]
Type=simple
ExecStart=frps绝对地址 -c frps.ini绝对地址
# ExecStart=home/ubuntu/frp/frps -c home/ubuntu/frp/frps.ini
Restart=on-failure

[Install]
WantedBy=multi-user.target
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

允许服务开机自启动

sudo systemctl enable frps.service
  • 1

启动服务

sudo systemctl start frps.service
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/161398?site
推荐阅读
相关标签
  

闽ICP备14008679号