为Proxmox VE pve启用frp,内网穿透

pve基于debian,也是可以正常使用frp,和其他的使用方法一样。
这里简单记录一下。

frp项目 github地址 https://github.com/fatedier/frp

不想上图了,直接以文字形式讲解叭

# 创建frp文件夹
mkdir /etc/frp
#下载项目,并且把文件移动到frp文件夹去
项目地址:https://github.com/fatedier/frp/releases
注:下载的时候请选择xxx_linux_amd64.tar.gz
#下载frp
wget https://github.com/fatedier/frp/releases/download/v0.32.1/frp_0.32.1_linux_amd64.tar.gz 
#解压frp
tar -zxvf ./frp_0.32.1_linux_amd64.tar.gz 
#移动frp到/etc/frp
mv ./frp_0.32.1_linux_amd64/* /etc/frp/
#创建软连接
ln -s /etc/frp/frps /usr/bin/frps
ln -s /etc/frp/frpc /usr/bin/frpc
ln -s /etc/frp/systemd/frps.service /lib/systemd/system/frps.service
ln -s /etc/frp/systemd/frpc.service /lib/systemd/system/frpc.service
#修改配置
vi /etc/frp/frps.ini
vi /etc/frp/frpc.ini
如何配置请看https://github.com/fatedier/frp/blob/master/README_zh.md
注意的是。客户端请使用tcp。非vhost
#启动
systemctl start frps     #启动服务端
systemctl start frpc     #启动客户端
#开机自启
systemctl enable frps  
systemctl enable frpc
#其他命令
systemctl restart frps
systemctl restart frpc
systemctl status frpc
systemctl status frps

版权声明:
作者:佛西
链接:https://foxi.buduanwang.vip/virtualization/pve/493.html/
文章版权归作者所有,未经允许请勿转载
如需获得支持,请点击网页右上角
THE END
分享
二维码
海报
为Proxmox VE pve启用frp,内网穿透
pve基于debian,也是可以正常使用frp,和其他的使用方法一样。 这里简单记录一下。
<<上一篇
下一篇>>