1.工具:
一台具有公网IP的服务器; Frp; Nginx; SwitchySharp浏览器插件;
2.操作步骤
- 配置具有公网Ip的服务端:
Frps配置:文件路径“frp\frps.ini”[common] bind_port = 7000 #服务器端口 dashboard_addr = 0.0.0.0 #仪表板监听地址 dashboard_port = 7500 #仪表板监听端口 dashboard_user = admin #仪表板访问用户名 dashboard_pwd = admin #仪表板访问密码 privilege_token = #连接密钥
- 配置内网服务器:
Frpc配置:文件路径“frp\frpc.ini”[common] server_addr = #服务器的公网IP server_port = 7000 #服务器端口 privilege_token =#连接密钥 [ssh] type = tcp local_ip = 127.0.0.1 local_port = 11111 #正向代理本地端口 remote_port = 5000 #正向代理服务器端口,必须保证服务端防火墙和安全组已允许该端口通过
Nginx配置:文件路径“nginx\conf\nginx.conf”
#user nobody; worker_processes 4; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { client_max_body_size 200m; server { resolver 114.114.114.114 8.8.8.8; listen 11111; #必须保证和ssh映射端口一致 location / { proxy_pass http://$http_host$request_uri; } } }
2.正向代理使用方法
原文链接:https://blog.csdn.net/weixin_30951231/article/details/99123331
© 版权声明
声明📢本站内容均来自互联网,归原创作者所有,如有侵权必删除。
本站文章皆由CC-4.0协议发布,如无来源则为原创,转载请注明出处。
THE END