“CentOS服务搭建-04-运用FRPS服务搭建黑群晖NAS的FRPC”的版本间的差异

来自DeerGrove Wiki
跳转至: 导航搜索
frps.service自启动
frps.service自启动进程查看
第70行: 第70行:
 
# 查看frp启动状态 <pre>sudo systemctl status frps</pre>
 
# 查看frp启动状态 <pre>sudo systemctl status frps</pre>
  
防火墙开启如下端口
+
=frps服务下的防火墙端口开启=
bind_port,dashboard_port
+
* 开启端口
firewall-cmd --permanent --add-port=xxxx/tcp # 开放bind_port端口
+
<pre>
firewall-cmd --permanent --add-port=xxxx/tcp # 开放dashboard_port端口(http)
+
firewall-cmd --permanent --add-port=xxxx/tcp # 开放bind_port(frps服务)# 必须
 +
firewall-cmd --permanent --add-port=xxxx/tcp # 开放dashboard_port(服务面板http)# 必须
 +
firewall-cmd --permanent --add-port=xxxx/tcp # 开放vhost_http_port(http端口)# 按需
 +
firewall-cmd --permanent --add-port=xxxx/tcp # 开放vhost_http_port(https端口)# 按需
 +
firewall-cmd --permanent --add-port=xxxx/tcp # 开放bind_udp_port端口(udp直连)# 按需
 +
firewall-cmd --permanent --add-port=xxxx/tcp # 开放kcp_bind_port端口(kcp端口)# 按需
 
firewall-cmd --reload #重启防火墙(修改配置后要重启防火墙)
 
firewall-cmd --reload #重启防火墙(修改配置后要重启防火墙)
 
firewall-cmd --list-all # 查看防火墙规则
 
firewall-cmd --list-all # 查看防火墙规则
 
+
</pre>
NAS ssh开启
+
* ssh端口开启(按需):公网服务器防火墙允许对应端口的流量通过,所以需要配置防火墙:
公网服务器防火墙允许对应端口的流量通过,所以需要配置防火墙:
+
<pre>
 
# firewall-cmd --zone=public --add-port=10067/tcp --permanent
 
# firewall-cmd --zone=public --add-port=10067/tcp --permanent
 
# firewall-cmd --reload
 
# firewall-cmd --reload
 
+
</pre>
内网机器上面执行 tail -f nohup.out 查看启动命令的执行结果akerlu
+
* 内网机器上面执行 tail -f nohup.out 查看启动命令的执行结果akerlu

2020年12月22日 (二) 12:47的版本


基础安装frps端

  • 本次安装服务应用于群晖系统,客户端为frpc0.26.0,因此,frps端使用同版本
  1. su获取root
  2. wget https://github.com/fatedier/frp/releases/download/v0.26.0/frp_0.26.0_linux_amd64.tar.gz
  3. 解压:tar xf frp_0.26.0_linux_amd64.tar.gz
  4. 改名:mv frp_0.26.0_linux_amd64 frp
  5. 进入目录:cd frp
  6. 删除没用的客户端文件:rm -f frpc*
  7. 配置文件:vim frps.ini
  8. 编辑ini文件 按ins进入编辑(精简)
[common]
bind_addr = x.x.x.x
bind_port = x
vhost_http_port = xxxxx
vhost_https_port = xxxxx
privilege_token = dg-xxxxxxxx
dashboard_port = xxxx
dashboard_user = xxxxx
dashboard_pwd = xxxxxxx

frps的调试

  1. 临时运行:
     ./frps -c ./frps.ini
  2. 一次性开机运行:nohup ./frps -c ./frps.ini &
    命令启动之后如果不重启VPS就会一直运行,以下操作可以省略。只需要在服务器重启之后,重新cd到程序目录,输入一次nohup ./frps -c ./frps.ini &命令即可
  3. 停止:先找到这个进程,使用ps -ef 查看进程ID
    ps -aux | grep frp
  4. 然后:kill -9 PID

frps的自启动service文档编辑

  1. 新建frps目录:mkdir /etc/frps
  2. mkdir /usr/etc/frps
  3. 拷贝frps.ini 到/etc/frps:cp /源目录/frps.ini /etc/frps/
  4. 拷贝frps到/usr/etc/frps:cp /源目录/usr/etc/frps
  5. 使用systemd配置开机自启(适用于 centos7 Ubuntu 16 或 debian 8)
     sudo vim /etc/systemd/system/frps.service 新建此文件,并写入以下内容
  6. frps.service文档内容
[Unit]
Description=frps daemon
 
[Service]
Type=simple
ExecStart=/usr/etc/frps/frps -c /etc/frps/frps.ini
# /usr/etc/frps 文件目录,注意service文件中要指向frps运行程序(这个搞了半天才运行成功!!!)
# /etc/frps/frps.ini 配置目录
[Install]
WantedBy=multi-user.target

frps.service自启动

  1. vim编辑退出:Esc,# :wq(保存退出)
  2. 启动并设为开机自启。
sudo systemctl start frps
# (把start改为stop即终止frps)
sudo systemctl enable frps
systemctl status frp
# 查看frps状态

Centos6.5及以下版本frps自启动

  1. vi /etc/rc.local
  2. 在最下面加一行/usr/sbin/frp/frps -c /usr/sbin/frp/frps.ini
  3. 其中 /usr/sbin/frp是程序放置的目录,自己修改,重启ok

frps.service自启动进程查看

  1. 查看frp是否启动:ps aux | grep frps
  2. 查看frp启动状态
    sudo systemctl status frps

frps服务下的防火墙端口开启

  • 开启端口
firewall-cmd --permanent --add-port=xxxx/tcp # 开放bind_port(frps服务)# 必须
firewall-cmd --permanent --add-port=xxxx/tcp # 开放dashboard_port(服务面板http)# 必须
firewall-cmd --permanent --add-port=xxxx/tcp # 开放vhost_http_port(http端口)# 按需
firewall-cmd --permanent --add-port=xxxx/tcp # 开放vhost_http_port(https端口)# 按需
firewall-cmd --permanent --add-port=xxxx/tcp # 开放bind_udp_port端口(udp直连)# 按需
firewall-cmd --permanent --add-port=xxxx/tcp # 开放kcp_bind_port端口(kcp端口)# 按需
firewall-cmd --reload #重启防火墙(修改配置后要重启防火墙)
firewall-cmd --list-all # 查看防火墙规则
  • ssh端口开启(按需):公网服务器防火墙允许对应端口的流量通过,所以需要配置防火墙:
# firewall-cmd --zone=public --add-port=10067/tcp --permanent
# firewall-cmd --reload
  • 内网机器上面执行 tail -f nohup.out 查看启动命令的执行结果akerlu