欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

squid正向代理使用

程序员文章站 2023-10-24 12:41:33
环境: Squid Cache: Version 3.5.20 操作系统: centos7.6 squid安装配置 yum install -y squid systemctl start squid systemctl enable squid 配置文件:/etc/squid//squid.con ......

 环境:
  squid cache: version 3.5.20

  操作系统: centos7.6 

 

squid安装配置

  yum install -y squid

       systemctl  start  squid

       systemctl  enable squid

       配置文件:/etc/squid//squid.conf

         默认端口3128 ;软件默认允许私网10.0.0.0/8,192.168.0.0/16,172.16.0.0/12 使用squid服务器;若源ip为公网ip,最好把http_access deny all 更改为 http_access permit all

       

centos客户端:

  url wget等需要使用环境变量; yum等应用需要单独设置

  [root@test01 ~]# cat /etc/profile.d/proxy.sh 

  export http_proxy=http://192.168.0.71:3128
  export https_proxy=http://192.168.0.71:3128
  export ftp_proxy=http://192.168.0.71:3128
  export no_proxy=http://192.168.0.

  source /etc/profile

windows系统:

  浏览器设置:

  3128端口为squid默认代理端口,此设置默认为所有协议进行代理

squid正向代理使用

squid正向代理使用