Linux内网穿透(frp)

目标:让我的VMware虚拟机某个服务拥有自己的外网访问地址

FRP 服务端(公网服务器)配置

1. 下载 FRP

登录公网服务器,执行以下命令下载并解压 FRP:

powershell 复制代码
# 下载对应版本(以Linux 64位为例)
wget https://github.com/fatedier/frp/releases/download/v0.62.1/frp_0.62.1_linux_amd64.tar.gz

# 解压并进入该目录
tar -zxvf frp_0.62.1_linux_amd64.tar.gz
cd frp_0.62.1_linux_amd64

2. 配置服务端

powershell 复制代码
vim frps.toml
[common]
bind_port = 7000
dashboard_port = 7500
dashboard_user = "admin"
dashboard_pwd = "admin"
auth_token = "8dF2j5L7k9M0pQ4s7u9x!@#$%^&*"

3. 启动服务端

powershell 复制代码
# 前台运行(测试阶段)
./frps -c frps.toml

# 后台运行(生产环境)
nohup ./frps -c frps.toml &

4. 开放防火墙端口(以 CentOS 为例)

powershell 复制代码
firewall-cmd --zone=public --add-port=7000/tcp --permanent
firewall-cmd --zone=public --add-port=7500/tcp --permanent
firewall-cmd --zone=public --add-port=10022/tcp --permanent  # HTTP穿透端口
firewall-cmd --reload

FRP 客户端(VMware 虚拟机)配置

1. 下载并解压 FRP

powershell 复制代码
# 下载对应版本(以Linux 64位为例)
wget https://github.com/fatedier/frp/releases/download/v0.48.0/frp_0.48.0_linux_amd64.tar.gz

# 解压
tar -zxvf frp_0.62.1_linux_amd64.tar.gz
cd frp_0.62.1_linux_amd64

2. 配置客户端

powershell 复制代码
vim frpc.toml
[common]
server_addr = 自己的公网IP地址
server_port = 7000
auth_token = 8dF2j5L7k9M0pQ4s7u9x!@#$%^&*

[ssh]
type = tcp
local_ip = 127.0.0.1
local_port = 22
remote_port = 10022

3. 启动服务端

powershell 复制代码
# 前台运行(测试阶段)
./frpc -c frpc.toml

# 后台运行(生产环境)
nohup ./frpc -c frpc.toml &

测试验证

1、ssh测试连接正常

指定的公网IP,端口是指定10022,连接ssh服务

2、网页端测试连接正常

浏览器访问指定公网IP:7500,输入账号密码(账号密码设置的都是admin)

能看到穿透成功的TCP信息

相关推荐
阿星智力囊1 小时前
Thinkphp6+nginx环境报错信息不显示,接口直接报500和CORS跨域(错误的引导方向),真坑啊
运维·nginx·php·thinkphp6
代码AC不AC2 小时前
【Linux】计算机的基石:从冯·诺依曼体系结构到操作系统管理
linux·操作系统·冯诺依曼体系结构
大柏怎么被偷了3 小时前
【Linux】进程等待
linux·运维·服务器
云和数据.ChenGuang4 小时前
运维面试题之oracle和mysql单表最大容量
运维·mysql·oracle
偶像你挑的噻4 小时前
12-Linux驱动开发- SPI子系统
linux·驱动开发·stm32·嵌入式硬件
酷柚易汛智推官4 小时前
Fastlane赋能移动研发:从全流程自动化到工程效能升级
运维·自动化·酷柚易汛
落798.4 小时前
Genlogin × Bright Data,一键解锁自动化采集的高成功率方案
运维·自动化·数据采集·亮数据
羑悻的小杀马特4 小时前
轻量跨云·掌控无界:Portainer CE + cpolar 让远程容器运维像点外卖一样简单——免复杂配置,安全直达对应集群
运维·网络·安全·docker·cpolar
松涛和鸣4 小时前
16、C 语言高级指针与结构体
linux·c语言·开发语言·数据结构·git·算法
L***86534 小时前
Failed to restart nginx.service Unit nginx.service not found
运维·nginx