frp搭建正向代理,在家里使用公司或者学校网络

在家里使用公司或者学校网络,可以使用frp搭建正向代理。一些需求大概率是,一些学生需要学校网络,进教务系统选课,查成绩,进学校知网等等只有校园网能用的服务。或者一些上班的,在家里,需要公司网络办公,打卡等等。

需要一个服务器搭建frp服务端,学校或者家里电脑安装frp客户端,在家里设置好代理就可以了。

1、服务端配置 frps.toml

[common]
bind_addr = 0.0.0.0
bind_port = 7000
bind_udp_port = 7001
tcp_mux=true
heartbeat_timeout = 90
authentication_timeout = 900
dashboard_port = 7500
dashboard_user = 123456 #管理面板用户
dashboard_pwd = 123456 #管理面板密码
token = 123456  #token相当于密码,和客户端一样

运行服务端

./frps -c frps.toml

2、公司或者学校电脑客户端配置 frpc.toml

[common]
server_addr = xxx.xxx.xxx.xxx #服务端ip
server_port = 7000
token = dfadgd #token和服务端一样


[frp_http_proxy]
type = tcp
remote_port = 6000 #代理使用端口
plugin = http_proxy #http协议
plugin_http_user = abc #用户,不需要就注释掉
plugin_http_passwd = abc #密码,不需要就注释掉

[frp_socks5_proxy]
type = tcp
remote_port = 6005
plugin = socks5
plugin_user = abc
plugin_passwd = abc

运行客户端

.\frpc.exe -c .\frpc.toml

3、家里电脑设置 http或者socks5代理就可以使用公司或者学校的网络了。

浏览器可以使用 Proxy SwitchyOmega 扩展。

留言

* - 必填