Ubuntu 8.04 server 用squid 做代理服务器(小试牛刀)

简介:
1,安装squid
    #sudo apt-get install squid
       查看安装到了那里
    #sudo whereis squid  
2,修改/etc/squid/squid.conf
    备份配置文件
 # cd /etc/squid
#sudo cp squid.conf squid.conf.bak
    查看默认的配置
   #sudo cat squid.conf  |grep -v  ^$ |grep -v  ^#
     修改
   #sudo vim /etc/squid/squid.conf
    修改:http_port  172.16.0.2:8080
    在http_access deny all 前增加ACL:
    acl my_networks src 172.16.0.0/24
    http_access allow my_networks
3,对配置文件查错
    #sudo /usr/sbin/squid –k parse
    没有输出内容,则配置文件有效。
4,在默认情况下,没设置cache_dir ,若设置了,用以下命令初始化
   #sudo /usr/sbin/squid -z
5,启动squid
    #sudo /usr/sbin/squid –sD
6,查看是否正常启动
     #netstat –nl |grep 8080
      8080 是否出于侦听状态
      #ps ax |grep squid
       是否有两个进程,一个子进程,一个父进程。
7,在客户端的IE里做相应设置,看是否可以。
 
问题在客户端上INTERNET很慢,太慢了!问题出在哪?
 
     今天下午,在网上逛,发现有网友提到在squid.conf有一个配置dns_nameservers ,
官方解释为:Use this if you want to specify a list of DNS name servers
(IP addresses) to use instead of those given in your
/etc/resolv.conf file.
On Windows platforms, if no value is specified here or in
the /etc/resolv.conf file, the list of DNS name servers are
taken from the Windows registry, both static and dynamic DHCP
configurations are supported.

Example: dns_nameservers 10.0.0.1 192.172.0.4
我想是不是因为这个原因导致变慢的呢, 在squid.conf里找到这个修改为dns_nameservers  202.96.209.5 202.96.209.133 后,#sudo /usr/sbin/squid -k reconfigure ,经测试,代理网速正常,问题解决。早晨,我修改了/etc/resolv.conf 文件了,问题已就,没想到这个可以解决。

本文转自xcjgutong 51CTO博客,原文链接:http://blog.51cto.com/xuchengji/306338

相关文章
|
10天前
|
Ubuntu 网络协议 关系型数据库
超聚变服务器2288H V6使用 iBMC 安装 Ubuntu Server 24.04 LTS及后续系统配置
【11月更文挑战第15天】本文档详细介绍了如何使用iBMC在超聚变服务器2288H V6上安装Ubuntu Server 24.04 LTS,包括连接iBMC管理口、登录iBMC管理界面、配置RAID、安装系统以及后续系统配置等步骤。
|
2月前
|
网络协议 Ubuntu Linux
gpg从公钥服务器接收失败(gpg: keyserver receive failed: Server indicated a failure)
通过上述步骤,大多数情况下应该能够解决GPG从公钥服务器接收失败的问题。如果问题依旧存在,可能需要进一步调查与公钥服务器相关的更深层次的技术问题,或者考虑在相关社区论坛寻求帮助。
242 1
|
2月前
|
网络协议 Windows
Windows Server 2019 DHCP服务器搭建
Windows Server 2019 DHCP服务器搭建
|
2月前
|
网络协议 定位技术 Windows
Windows Server 2019 DNS服务器搭建
Windows Server 2019 DNS服务器搭建
|
2月前
|
Ubuntu 应用服务中间件 开发工具
Ubuntu16.04搭建gitlab服务器,搭建pip源服务器(两种方式),搭建apt源服务器
这篇文章是关于如何在Ubuntu 16.04系统上搭建GitLab服务器、pip源服务器(使用pypiserver和NGINX两种方式),以及apt源服务器的详细教程。
28 0
Ubuntu16.04搭建gitlab服务器,搭建pip源服务器(两种方式),搭建apt源服务器
|
2月前
|
缓存 NoSQL Ubuntu
大数据-39 Redis 高并发分布式缓存 Ubuntu源码编译安装 云服务器 启动并测试 redis-server redis-cli
大数据-39 Redis 高并发分布式缓存 Ubuntu源码编译安装 云服务器 启动并测试 redis-server redis-cli
57 3
|
2月前
|
Ubuntu API Python
Chat-TTS chat-tts-ui 实机部署上手测试!Ubuntu服务器实机 2070Super*2 8GB部署全流程
Chat-TTS chat-tts-ui 实机部署上手测试!Ubuntu服务器实机 2070Super*2 8GB部署全流程
71 1
|
2月前
|
网络协议 文件存储 Windows
Windows Server 2019 FTP服务器搭建
Windows Server 2019 FTP服务器搭建
|
2月前
|
网络协议 Windows
Windows Server 2019 Web服务器搭建
Windows Server 2019 Web服务器搭建
|
2月前
|
并行计算 Ubuntu 算法
Ubuntu18 服务器 更新升级CUDA版本 pyenv nvidia ubuntu1804 原11.2升级到PyTorch要求12.1 全过程详细记录 apt update
Ubuntu18 服务器 更新升级CUDA版本 pyenv nvidia ubuntu1804 原11.2升级到PyTorch要求12.1 全过程详细记录 apt update
110 0