frp内网穿透-windows客户端远程连接

下载安装包
可以自己去git的官网,下载对应的安装包

wget https://github.com/fatedier/frp/releases/download/v0.29.1/frp_0.29.1_linux_amd64.tar.gz

服务器端配置

[common]
bind_port = 7000 #绑定服务器端口
vhost_http_port = 10080 #http对应端口

运行服务

 /usr/local/frp_0.29.1_linux_amd64/frps -c /usr/local/frp_0.29.1_linux_amd64/frps.ini

客户端配置

[common]
server_addr = 101.37.79.100 #服务器ip
server_port = 7000

[web] #[可以随意命名]
type = http
local_ip = 127.0.0.1
local_port = 80
custom_domains = 101.37.79.100 #域名 或者直接写ip

[ssh]
type = tcp
local_ip = 127.0.0.1
local_port = 3389 #windows 远程连接端口
remote_port = 6000 #远程连接端口

ps:local_port 一定不要搞错,我就是连windos的时候用了22端口,死活连不上,切记。如果是连linux主机换成22号端口

打开客户端
进入安装目录 输入cmd

frpc.exe -c frpc.ini

结果:
1.web
frp内网穿透-windows客户端远程连接_第1张图片
2.ssh
windows
frp内网穿透-windows客户端远程连接_第2张图片

你可能感兴趣的:(实用技术)