博客
关于我
Squid服务器ACL与日志分析
阅读量:376 次
发布时间:2019-03-04

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

Squid???ACL?????????

Squid????ACL????

Squid??????????????????????????ACL?????????????ACL???????????????????????????????????????????????

ACL??????

  • ????????

    ACL????????

    acl ???? ???? ????
    • ????????????????
    • ???????src??????dst???????port?????domain???????time??????maxconn????????url_regex?URL????????urlpath_regex?URL????????
  • ??????

    ??http_access??????ACL??????

    http_access allow ???http_access deny ???
    • ???????????Squid????????????
    • ???????Squid???????????????????
    • ?????deny??????allow???????allow all?deny all?
  • ????

    ???1????????????????

    acl aaa src 192.168.100.0/24http_access deny aaa

    ???2?????????????????

    acl aaa src 192.168.100.0/24acl bbb time MTWHF 08:30-17:30http_access allow aaa bbbhttp_access deny aaa

    ???3?????????????

    acl ccc dst "/tmp/ipblock.list"acl ddd dstdomain "/tmp/dmblock.list"http_access deny ccchttp_access deny ddd

    Squid????

    SARG?Squid Analysis Report Generator??????Squid???????????????????????SARG?????????

    ??SARG

  • ??GD?

    ??YUM???

    yum -y install gd gd-devel
  • ??SARG

    - ?????

    tar zxvf sarg-2.3.7.tar.gz

    - ?????

    ./configure --prefix=/usr/local/sarg --sysconfdir=/etc/sarg --enable-extraprotectionmakemake install

    - ??????

    echo "access_log /usr/local/squid/var/logs/access.log" > /etc/sarg/sarg.confecho "title \"Squid User Access Reports\"" >> /etc/sarg/sarg.confecho "output_dir /var/www/html/sarg" >> /etc/sarg/sarg.conf
  • ??SARG

    sarg
  • ???????

  • #!/bin/bashTD=$(date +%d/%M/%Y)YETD=$(date -d '1 day ago' +%d/%M/%Y)/usr/local/sarg/bin/sarg --log /usr/local/squid/var/logs/access.log --output /var/www/html/sarg --zone --daily $YETD-$TD > /dev/nullexit 0

    - ?????????   ```bash   chmod +x /usr/local/sarg/daily.sh
    • ?????????
    crontab -e00 00 * * * /usr/local/sarg/daily.sh

    ????

    • ????
      ??Squid?????
      tail -3 /usr/local/squid/var/logs/access.log
    • ????
      ?????????URL???????????

    转载地址:http://hibg.baihongyu.com/

    你可能感兴趣的文章
    Python 字符串总结
    查看>>
    python 字符串显示中文_Python字符串开头的b"、u"、r"与中文乱码
    查看>>
    Python 字符串的几种拼装方式
    查看>>
    python 存入数据库bigint_python基础_MySQL的bigint类型
    查看>>
    python 学习 面向对象编程
    查看>>
    Python 学习小结
    查看>>
    Python 学习日记第三篇 -- 字典
    查看>>
    Python 学习笔记(一)Data type
    查看>>
    python 安装 easy_install 和 pip 流程
    查看>>
    python 安装echarts
    查看>>
    python 安装opencv及问题解决
    查看>>
    Python 安装程序:“写入文件 C:\Python27\pythonw.exe 时出错“
    查看>>
    Python 安装避坑指南:从入门到进阶
    查看>>
    Python 安装配置详解
    查看>>
    python 实现儿童算术游戏
    查看>>
    python 实现字符串转整型
    查看>>
    Python 实现定时任务的八种方案!
    查看>>
    python 实现将RGBA 转换为RGB
    查看>>
    python字符串与url编码的转换
    查看>>
    Python 实现自动化测试 dubbo 协议接口
    查看>>