frp配置内网穿透教程(超详细)

1 Frp介绍

frp 是一个开源、简洁易用、高性能的内网穿透和反向代理软件,支持 tcp, udp, http, https等协议。frp 项目官网是 https://github.com/fatedier/frp/releases

一个是linux一个是win

frp配置内网穿透教程(超详细)插图

下载完成后上传服务器解压如下:

两个服务器用用一个包

服务端(我这里把frpc删除了)外网

frp配置内网穿透教程(超详细)插图1

客户端(我这里把frps删除了)内网

frp配置内网穿透教程(超详细)插图2

二、配置

  • server端
[common] # 共同配置,必需有该配置(请勿修改该代理名) bind_port = 7000 # frps 监听的端口 bind_addr = 0.0.0.0 

frp配置内网穿透教程(超详细)插图3

server端启动

./frps -c frps.ini 

frp配置内网穿透教程(超详细)插图4

  • client端
[common] server_addr = server IP地址 server_port = 7000 [tcp] type = tcp local_ip = 127.0.0.1 local_port = 22 remote_port = 6000 [web] type = tcp local_ip = 127.0.0.1 local_port = 80 remote_port = 80 

frp配置内网穿透教程(超详细)插图5

客户端启动

./frpc -c ./frpc.ini 

frp配置内网穿透教程(超详细)插图6

服务端连接信息

frp配置内网穿透教程(超详细)插图7

在客户端跑一个nginx项目

我这里是直接使用docker跑,不在演示

浏览器输入

frp配置内网穿透教程(超详细)插图8

原文链接:https://blog.csdn.net/weixin_42981419/article/details/128610714

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享