Proxifier+Frp穿透多层内网

发布时间 2023-03-29 16:17:49作者: whoam1

后台运行命令

win:start /b frpc.exe -c frpc.in

linux:nohup ./frpc -c frpc.ini >/dev/null 2>&1 &

第一层

S端

[common]
bind_port = 7000

C端

[common]
tls_enable = true
server_addr = vps
server_port = 7000

[socks]
type = tcp
remote_port = 9000
plugin = socks5

第二层

S端

[common]
bind_port = 7000

C端

[common]
tls_enable = true
server_addr = 上层主机IP
server_port = 7000

[socks5]
type = tcp
remote_port = 9000
plugin = socks5

第三层

S端

[common]
bind_port = 7000

C端

[common]
tls_enable = true
server_addr = 上层主机IP
server_port = 7000

[socks5]
type = tcp
remote_port = 9000
plugin = socks5

第四层

S端

[common]
bind_port = 7000

C端

[common]
tls_enable = true
server_addr = 上层主机IP
server_port = 7000

[socks5]
type = tcp
remote_port = 9000
plugin = socks5

Proxifier

核心思想就是配置一个代理链,相当于添加路由

1.配置代理服务器

image-20230329160505212

2.配置代理链

image-20230329160933037

3.配置代理规则

image-20230329160100845

访问内网成功

image-20230329161130215