1)点击实例名
目录
2)添加辅助网卡
3)绑定弹性公网ip
4)为辅助网卡绑定安全组
5)修改网卡配置文件
6)ping辅助网卡上的公网ip
7)在自己的服务器上编写端口映射脚本
端口映射脚本
测试脚本
测试脚本是杭州的服务器,有时比较慢,可以自己写一个在同地区的服务来查看ip地址;
8)在自己的服务器上安装tinyproxy软件
1. 安装 TinyProxy
yum -y install tinyproxy
2. 配置 TinyProxy
vim /etc/tinyproxy/tinyproxy.conf
修改 Port 端口,默认为 8888
Port 8888
注释掉 Allow,表示允许所有人访问代理
#Allow 127.0.0.1
隐藏掉Via请求头部,去掉下面的注释
DisableViaHeader Yes
更多配置项,下面是列举一些配置文件默认的,不需要配置:
PidFile "/var/run/tinyproxy/tinyproxy.pid"LogFile "/var/log/tinyproxy/tinyproxy.log"LogLevel InfoMaxClients 100MinSpareServers 5MaxSpareServers 20StartServers 10
3. 启动 TinyProxy
systemctl start tinyproxy.service
更多命令如下:
systemctl restart tinyproxy.service systemctl stop tinyproxy.service systemctl status tinyproxy.service systemctl enable tinyproxy.service
4. 关闭防火墙或开放端口访问
方式1:关闭防火墙
systemctlstop iptables
方式2:开放端口访问
iptables -A INPUT -p tcp --dport 8888 -j ACCEPT
重启防火墙
systemctlrestart iptables
注意:若采用的阿里云、腾讯云、AWS等云服务器,记得要在安全策略里开放端口号
5. 验证生效
1)命令行测试验证
curl 和 wget 测试使用代理,请参考米扑代理的使用示例,总结的非常全面!强烈推荐!
这里,直接使用米扑代理的最简单示例:
curl -m 30 --retry 3 -x http://58.87.90.149:8888 http://proxy.mimvp.com/exist.php | grep color="red"<font color="red">58.87.90.149</font>curl -m 30 --retry 3 -x http://58.87.90.149:8888 -k https://proxy.mimvp.com/exist.php | grep color="red"<font color="red">58.87.90.149</font>
tinyproxy 支持 http 和 https 两种协议,经米扑代理测试,成功!
2)Firefox 插件测试
首先,安装 Proxy Switcher
其次,配置代理,如下图:
然后,访问米扑代理网站,验证代理
https://proxy.mimvp.com/exist.php
上图里,http_via 带有参数,要隐藏需要修改配置文件
vim /etc/tinyproxy/tinyproxy.conf
隐藏掉Via请求头部,去掉下面的注释
DisableViaHeader Yes
重启 tinyproxy
systemctl restart tinyproxy.service
参考文章:
https://www.cnblogs.com/new_2050/p/7658508.html
https://cloud.tencent.com/developer/article/1360462
如有不会,直接加博主:
部分参考来源:CSDN作者:ITROOKIEIS链接:腾讯云搭建代理服务器的全过程_ITROOKIEIS的博客-CSDN博客_搭建代理服务器