frp 包含客户端和服务端
服务端 我用的是linux
客户端用的是 window/linux
关于代理、远程桌面控制
本质都是端口映射
也利用socket5
frp下载地址
/fatedier/frp/releases
frps配置
[common]
bind_port = 7777
dashboard_user = abc
#dashboard 密码
dashboard_pwd = 123456
#dashboard 端口,启动成功后可通过浏览器访问如http://ip:1010
dashboard_port = 1010
frpc配置
proxy表示代理 3128端口
需要先/weixin_41096569/article/details/121008808?spm=1001.2014.3001.5501
yc表示远程桌面端口 3389
plugin_socks表示socket5
[common]
server_addr = 服务端ip
server_port = 服务端bind_port
tls_enable = true
[proxy]
type = tcp
local_ip = 本机ipv4
local_port = 3128
remote_port = 3128
[yc]
type = tcp
local_ip = 本机ipv4
local_port = 3389
remote_port = 3389
[plugin_socks]
type = tcp
remote_port = 36
plugin = socks5
plugin_user = admin
plugin_passwd = admin123
use_encryption = true
use_compression = true
编辑完运行
服务端
nohup ./frps -c ./ &
客户端
linux
nohup ./frpc -c ./ &
windows
cd C:\Users\linux\Desktop\frp_0.38.0_windows_amd64
-c