内网穿透服务器搭建frps服务端和frpc客户端
下载地址: https://github.com/fatedier/frp/releases
公网服务器上 打开下载文件
frps是服务端,在公网服务器上部署
frpc是客户端,在需要内网穿透的电脑上部署
需要修改的数据
bind_port = 2534 # 公网服务器爆漏的端口
subdomain_host = xxx.xxx.xxx #公网ip或者域名(访问多个web端必须使用域名,我用的域名,通过二级域名访问不同的本地web端(作用类似ngins里面的service_name),列bt40.xxx.xxx.xxx:1208, ng40.xxx.xxx.xxx:1208, kuboard40.xxx.xxx.xxx:1208)
token =Y2SEsBxxx #
dashboard_port = 16343 #frp服务器管理(可以看当前连接的服务)
dashboard_user = yjx #登录名
dashboard_pwd = yjx #登录密码
vhost_http_port = 1208 # web端爆漏的端口
修改frps.ini配置后启动 到cmd同目录执行
Linux设置Frps Frpc服务开启启动
在/etc/systemd/system下添加frps.service或frpc.service
[Unit] Description=frpc daemon After=syslog.target network.target Wants=network.target [Service] Type=simple ExecStart=/root/frpc/frpc -c /root/frpc/frpc.ini #启动命令根据自己情况填写目录 Restart= always RestartSec=1min ExecStop=/usr/bin/killall frpc [Install] WantedBy=multi-user.target
相关命令
systemctl enable frpc(frps) #设置开机启动 systemctl start frpc(frps) #启动 systemctl stop frpc(frps) #停止 systemctl status frpc(frps) #状态