赞
踩
1.1、外网可访问服务器一台。
1.2、外网可访问域名。
1.3、本地电脑一台或多台。
1.4、frp内网穿透安装包,frp下载路径 https://github.com/fatedier/frp/releases
2.1、在服务器上找到frp的安装包打开frps.ini,如下配置。
[common]
bind_port = 7000
vhost_http_port=10000
3.1、在客户端上找到frp的安装包打开frpc.ini,如下配置
[common]
server_addr = 12.51.21.16 #这是你远端服务器的IP
server_port = 7000
[web]
type = http
custom_domains = xxx.com
local_port = 10000
1.1、进入服务器frp的安装包文件夹,执行命令
./frps -c ./frps.ini
1.1、进入客户端frp的安装包文件夹,执行命令
./frpc.exe -c ./frpc.ini
1.1、使用systemctl来控制启动
vim /lib/systemd/system/frps.service
1.2、在frps.service上配置后台运行,写入以下代码。
[Unit]
Description=frps service
After=network.target syslog.target
Wants=network.target
[Service]
Type=simple
#启动服务的命令(此处写你的frps的实际安装目录)
ExecStart=/opt/frp/frps -c /opt/frp/frps.ini
[Install]
WantedBy=multi-user.target
1.3、frps配置后的相关指令
启动frps
systemctl start frps
开启开机自启动
systemctl enable frps
关闭开机自启动
systemctl disable frps
重启frps服务
systemctl restart frps
停止frps服务
systemctl stop frps
查看frps服务状态
systemctl status frps
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。