博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
squid代理http和https方式上网的操作记录
阅读量:4353 次
发布时间:2019-06-07

本文共 9090 字,大约阅读时间需要 30 分钟。

 

需求说明:公司IDC机房有一台服务器A,只有内网环境:192.168.1.150现在需要让这台服务器能对外访问,能正常访问http和https请求(即80端口和443端口)

操作思路:在IDC机房里另找其他两台有公网环境的服务器B(58.68.250.8/192.168.1.8)和服务器C(58.68.250.5/192.168.1.5),且这两台服务器和内网环境的服务器A能相互ping通。(当然也可以将下面B的http和C机器的https代理环境放在一台机器上部署)其中:
在服务器B上部署squid的http代理,让服务器C通过它的squid代理上网,能成功访问http
在服务器C上部署squid的https代理,让服务器C通过它的squid代理上网,能成功访问https  [需要在客户端安装stunnel ]

一、服务器B上的操作记录(http代理)

1)安装squidyum命令直接在线安装squid[root@openstack ~]# yum install -y gcc openssl openssl-devel #依赖软件要先提前安装[root@openstack ~]# yum install squid安装完成后,修改squid.conf 文件中的内容,修改之前可以先备份该文件[root@openstack ~]# cd /etc/squid/[root@openstack squid]# cp squid.conf squid.conf_bak[root@openstack squid]# vim squid.confhttp_access allow all                                                   #修改deny为allowhttp_port 192.168.1.8:3128 cache_dir ufs /var/spool/squid 100 16 256                    #打开这个注释,保证/var/spool/squid这个缓存目录存在2)启动squid,启动前进行测试和初始化[root@openstack squid]# squid -k parse                    #测试2016/08/09 13:35:04| Processing Configuration File: /etc/squid/squid.conf (depth 0)2016/08/09 13:35:04| Processing: acl manager proto cache_object............................2016/08/09 13:35:04| Processing: refresh_pattern . 0 20% 43202016/08/09 13:35:04| Initializing https proxy context[root@openstack squid]# squid -z                            #初始化2016/08/09 13:35:12| Creating Swap Directories[root@openstack squid]# /etc/init.d/squid startStarting squid: . [ OK ]-------------------------------------------------------------------------------------------如果开启了防火墙iptables规则,则还需要在/etc/sysconfig/iptables里添加下面一行,即允许3128端口访问:-A INPUT -s 192.168.1.0/24 -p tcp -m state --state NEW -m tcp --dport 3128 -j ACCEPT--------------------------------------------------------------------------------------------然后重启iptables服务[root@openstack squid]# /etc/init.d/iptables restart

二、服务器C上的的操作记录(https代理)

1)安装squidyum命令直接在线安装squid[root@openstack ~]# yum install -y gcc openssl openssl-devel #依赖软件要先提前安装[root@openstack ~]# yum install squid[root@openstack ~]# cd /etc/squid/[root@openstack squid]# cp squid.conf squid.conf_bak2)现在开始生成加密代理证书:[root@bastion-IDC squid]# pwd/etc/squid[root@bastion-IDC squid]# openssl req -new > lidongbest5.csrGenerating a 2048 bit RSA private key..........................................................................+++.........................................................................................................+++writing new private key to 'privkey.pem'Enter PEM pass phrase:                                                                   #输入密码,后面会用到,比如这里输入123456Verifying - Enter PEM pass phrase:-----You are about to be asked to enter information that will be incorporatedinto your certificate request.What you are about to enter is what is called a Distinguished Name or a DN.There are quite a few fields but you can leave some blankFor some fields there will be a default value,If you enter '.', the field will be left blank.-----Country Name (2 letter code) [XX]:cn                                                  #国家State or Province Name (full name) []:beijing                                       #省份Locality Name (eg, city) [Default City]:beijing                                      #地区名字Organization Name (eg, company) [Default Company Ltd]:huanqiu        #公司名Organizational Unit Name (eg, section) []:Technology                            #部门Common Name (eg, your name or your server's hostname) []:huanqiu    #CA主机名Email Address []:wangshibo@xqshijie.cn                                              #邮箱Please enter the following 'extra' attributesto be sent with your certificate requestA challenge password []:123456                                                         #证书请求密钥,CA读取证书的时候需要输入密码An optional company name []:huanqiu                                                #-公司名称,CA读取证书的时候需要输入名称[root@bastion-IDC squid]# openssl rsa -in privkey.pem -out lidongbest5.keyEnter pass phrase for privkey.pem:                                                     #输入上面设置的密码123456writing RSA key[root@bastion-IDC squid]# openssl x509 -in lidongbest5.csr -out lidongbest5.crt -req -signkey lidongbest5.key -days 3650Signature oksubject=/C=cn/ST=beijing/L=beijing/O=huanqiu/OU=Technology/CN=huanqiu/emailAddress=wangshibo@xqshijie.cnGetting Private key修改squid.conf配置文件[root@bastion-IDC squid]# vim squid.confhttp_access allow all #deny修改为allow#http_port 3128                                                                    #注释掉 https_port 192.168.1.5:443 cert=/etc/squid/lidongbest5.crt key=/etc/squid/lidongbest5.key            #添加这一行cache_dir ufs /var/spool/squid 100 16 256                             #打开这个注释,保证/var/spool/squid这个缓存目录存在3)重启squid服务[root@bastion-IDC squid]# squid -k parse [root@bastion-IDC squid]# squid -z[root@bastion-IDC squid]# squid reload[root@bastion-IDC squid]# /etc/init.d/squid restart-------------------------------------------------------------------------------------------如果开启了防火墙iptables规则,则还需要在/etc/sysconfig/iptables里添加下面一行,即允许443端口访问:-A INPUT -s 192.168.1.0/24 -p tcp -m state --state NEW -m tcp --dport 443 -j ACCEPT-------------------------------------------------------------------------------------------然后重启iptables服务[root@bastion-IDC squid]# /etc/init.d/iptables restart

三、服务器A(即客户端)上的操作记录

1)安装配置stunnel关闭客户端的iptables防火墙[root@dev-new-test1 ~]# /etc/init.d/iptables stop[root@dev-new-test1 ~]# cd /usr/local/src/[root@dev-new-test1 src]# pwd/usr/local/src官网下载:http://www.stunnel.org/downloads.html百度云盘下载:https://pan.baidu.com/s/1JXqfB7yc6H2GY9qtBVO4iw     提取密码:4kt8[root@dev-new-test1 ~]#yum install -y openssl openssl-devel gcc[root@dev-new-test1 src]# lsstunnel-5.45.tar.gz[root@dev-new-test1 src]# tar -zvxf stunnel-5.45.tar.gz[root@dev-new-test1 src]# lsstunnel-5.45 stunnel-5.45.tar.gz[root@dev-new-test1 src]# cd stunnel-5.45[root@dev-new-test1 stunnel-5.45]# ./configure[root@dev-new-test1 stunnel-5.45]# make && make install安装完成后,配置stunnel.conf[root@dev-new-test1 stunnel-5.45]# cd /usr/local/etc/stunnel/[root@dev-new-test1 stunnel]# lsstunnel.conf-sample[root@dev-new-test1 stunnel]# cp stunnel.conf-sample stunnel.conf[root@dev-new-test1 stunnel]# lsstunnel.conf stunnel.conf-sample [root@dev-new-test1 stunnel]# cat stunnel.conf              #把原来内容清空,写入:client = yes[https]accept = 127.0.0.1:8088connect = 192.168.1.5:443                               #运行本机stunnel端口8088连接squid服务端192.168.1.5的443端口,然后在/etc/profile里配置本机8088端口代理(如下)2)启动stunnel服务[root@dev-new-test1 stunnel]# /usr/local/bin/stunnel /usr/local/etc/stunnel/stunnel.conf[root@dev-new-test1 stunnel]# ps -ef|grep stunnelroot 20281 1 0 02:23 ? 00:00:00 /usr/local/bin/stunnel /usr/local/etc/stunnel/stunnel.confroot 20283 13002 0 02:23 pts/0 00:00:00 grep --color stunnel[root@dev-new-test1 stunnel]# lsof -i:8088COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAMEstunnel 20281 root 7u IPv4 745475 0t0 TCP localhost:radan-http (LISTEN)3)配置/etc/profile系统环境变量底部添加下面两行[root@dev-new-test1 stunnel]# vim /etc/profile ...............export http_proxy=http://192.168.1.8:3128                          #这个是通过服务端A机器的3128端口的squid上网(http代理)export https_proxy=http://127.0.0.1:8088                            #这个是通过服务端B机器的443端口的squid上网(https代理)[root@dev-new-test1 stunnel]# source /etc/profile                   #配置生效4)测试:[root@dev-new-test1 stunnel]# curl http://www.baidu.com                           #访问80端口ok[root@dev-new-test1 stunnel]# curl https://www.xqshijie.com                      #访问443端口ok[root@dev-new-test1 stunnel]# yum list                                                     #yum可以正常使用[root@dev-new-test1 stunnel]# wget http://www.autohome.com.cn/3442      #wget正常下载

++++++++++++++++++++++++++++++++++++++++++++++++++++

如果客户机是ubuntu系统,则安装配置stunnel记录如下:root@kevin-KVM:~# apt-get install stunnel4root@kevin-KVM:~# cd /etc/stunnel/root@kevin-KVM:/etc/stunnel# lsREADMEroot@kevin-KVM:/etc/stunnel# vim stunnel.conf    #手动创建该配置文件client = yes[https]accept = 127.0.0.1:8088connect = 192.168.1.8:443root@kevin-KVM:/etc/stunnel# vim /etc/default/stunnel4......ENABLED=1          #默认为0=========================================================注意:上面的ENABLED一定要修改为1,否则启动stunne服务时会失败,通过status查看报错为:5月 27 00:45:56 kevin-KVM systemd[1]: Starting LSB: Start or stop stunnel 4.x (SSL tunnel for network daemons)...5月 27 00:45:56 kevin-KVM stunnel4[23356]: SSL tunnels disabled, see /etc/default/stunnel45月 27 00:45:56 kevin-KVM systemd[1]: Started LSB: Start or stop stunnel 4.x (SSL tunnel for network daemons).=========================================================接着启动stunne服务root@kevin-KVM:~# /etc/init.d/stunnel4 start  root@kevin-KVM:~# /etc/init.d/stunnel4 restartroot@kevin-KVM:/etc/stunnel# lsof -i:8088COMMAND    PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAMEstunnel4 23625 root    7u  IPv4 138476      0t0  TCP localhost:omniorb (LISTEN)然后进行代理的环境变量配置root@kevin-KVM:~# cat /etc/profile......export http_proxy=http://192.168.1.8:3128export https_proxy=http://127.0.0.1:8088root@kevin-KVM:~# source /etc/profile测试上网:root@kevin-KVM:~# curl http://www.baidu.comroot@kevin-KVM:~# curl https://www.baidu.com

转载于:https://www.cnblogs.com/kevingrace/p/5853199.html

你可能感兴趣的文章
[转载]EXTJS学习
查看>>
SQL Server2012完全备份、差异备份、事务日志备份和还原操作
查看>>
Flash动画播放
查看>>
springmvc+mybatis+dubbo+zookeeper 分布式架构
查看>>
HDUOJ-----Computer Transformation
查看>>
HDUOJ-----2838Cow Sorting(组合树状数组)
查看>>
自定义控件之---抽屉式弹窗控件.
查看>>
一款纯css3实现的机器人看书动画效果
查看>>
加班与效率
查看>>
轻量级Modal模态框插件cta.js
查看>>
MyEclipse下SpringBoot+JSP整合过程及踩坑
查看>>
重定向和管道
查看>>
实验五
查看>>
STL学习笔记(第二章 C++及其标准程序库简介)
查看>>
Operator_countByValue
查看>>
Java 日期往后推迟n天
查看>>
Web应用漏洞评估工具Paros
查看>>
Git 和 Github 使用指南
查看>>
20180925-4 单元测试
查看>>
mysql的数据存储
查看>>