真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

squid-sarg日志,ACL訪問控制,反向代理

實驗環(huán)境

squid服務(wù)器 ens33:192.168.13.184
                                        ens36:192.168.10.1 (僅主機(jī)模式)
web服務(wù)器 192.168.13.151
client 192.168.10.10  (僅主機(jī)模式)

一,ACL訪問控制

1,在squid服務(wù)器上修改配置文件

[root@squid ~]# vim /etc/squid.conf  ##修改配置文件
# should be allowed
acl hostlocal src 192.168.10.10/32  ##控制hostlocal10.10的主機(jī)
# Deny requests to certain unsafe ports
http_access deny hostlocal  ##拒絕訪問
[root@squid ~]# service squid reload   ##重啟squid服務(wù)

2,在測試機(jī)上訪問web網(wǎng)頁

squid-sarg日志,ACL訪問控制,反向代理

創(chuàng)新互聯(lián)公司專注于網(wǎng)站建設(shè)|成都網(wǎng)站維護(hù)|優(yōu)化|托管以及網(wǎng)絡(luò)推廣,積累了大量的網(wǎng)站設(shè)計與制作經(jīng)驗,為許多企業(yè)提供了網(wǎng)站定制設(shè)計服務(wù),案例作品覆蓋木托盤等行業(yè)。能根據(jù)企業(yè)所處的行業(yè)與銷售的產(chǎn)品,結(jié)合品牌形象的塑造,量身策劃品質(zhì)網(wǎng)站。

二,sarg日志

1,在squid服務(wù)器上安裝sarg

[root@squid ~]# mount.cifs //192.168.100.3/LNMP-C7 /mnt/  ##掛載
Password for root@//192.168.100.3/LNMP-C7:  
[root@squid ~]# cd /mnt/
[root@squid mnt]# tar zxvf sarg-2.3.7.tar.gz -C /opt/   ##解壓
[root@squid mnt]# cd /opt/sarg-2.3.7/
[root@squid sarg-2.3.7]# yum install gd gd-devel -y  ##安裝gd庫
[root@squid sarg-2.3.7]# ./configure --prefix=/usr/local/sarg \  ##安裝路徑
> --sysconfdir=/etc/sarg \   ##配置文件
> --enable-extraprotection  ##開啟安全防護(hù)
[root@squid sarg-2.3.7]# make && make install  ##編譯安裝

2,修改sarg配置文件

[root@squid sarg-2.3.7]# vim /etc/sarg/sarg.conf  ##修改sarg配置文件
##將下面的模塊修改開啟
access_log /usr/local/squid/var/logs/access.log  ##指定訪問日志文件
title "Squid User Access Reports"  ##網(wǎng)頁標(biāo)題
output_dir /var/www/html/squid-reports  ##報告輸出目錄
user_ip no  ##使用用戶名顯示
exclude_hosts /usr/local/sarg/noreport  ##不計入排序的站點列表文件
topuser_sort_field connect reverse  
##top排序中有連接次數(shù),訪問字節(jié),降序排列,升序是normal
overwrite_report no  ##同名日志是否覆蓋
mail_utility mailq.postfix  ##發(fā)送郵件報告命令
charset UTF-8  ##使用字符集
weekdays 0-6  ##top排行的時間周期
hours 0-23  ##top排行的時間周期
www_document_root /var/www/html  ##網(wǎng)頁根目錄
[root@squid ~]# sarg   ##生成報告
SARG: 紀(jì)錄在文件: 91, reading: 100.00%
SARG: 成功的生成報告在 /var/www/html/squid-reports/2019Dec11-2019Dec12
[root@squid sarg-2.3.7]# cd /var/www/html/squid-reports/  ##切換到html目錄下
[root@squid squid-reports]# ls
2019Dec11-2019Dec12   images  index.html
[root@squid squid-reports]# yum install httpd -y  ##安裝httpd服務(wù)
[root@squid squid-reports]# systemctl start httpd.service  ##開啟服務(wù)
[root@squid squid-reports]# systemctl stop firewalld.service   ##關(guān)閉防火墻
[root@squid squid-reports]# setenforce 0

3,用測試機(jī)訪問網(wǎng)頁查看訪問記錄

squid-sarg日志,ACL訪問控制,反向代理

##周期性計劃任務(wù)執(zhí)行每天生成報告crontab
sarg -l /usr/local/squid/var/logs/access.log -o /var/www/html/squid-reports/ -z -d $(date -d "1 day ago" +%d/%m/%Y)-$(date +%d/%m/%Y)

squid-sarg日志,ACL訪問控制,反向代理

三,squid反向代理

squid服務(wù)器 ens33:192.168.13.184
                                        ens36:192.168.10.1 (僅主機(jī)模式)
web1服務(wù)器 192.168.13.151
web2服務(wù)器 192.168.13.185
client 192.168.10.10  (僅主機(jī)模式)

1,在web1服務(wù)器上編輯一個網(wǎng)頁內(nèi)容

[root@web ~]# cd /var/www/html/
[root@web html]# vim index.html  ##編輯網(wǎng)頁內(nèi)容

this is test web!

2,在測試機(jī)上訪問網(wǎng)頁

squid-sarg日志,ACL訪問控制,反向代理

3,在web2服務(wù)器上編輯一個網(wǎng)頁內(nèi)容

[root@web2 ~]# systemctl stop firewalld.service   ##關(guān)閉防火墻
[root@web2 ~]# setenforce 0
[root@web2 ~]# yum install httpd -y   ##安裝httpd服務(wù)
[root@web2 ~]# cd /var/www/html/   ##創(chuàng)建網(wǎng)頁內(nèi)容
[root@web2 html]# vim index.html

this is test2 web!

[root@web2 html]# systemctl start httpd.service

4,在squid服務(wù)上配置反向代理

[root@localhost squid]# vim /etc/squid.conf
# Squid normally listens to port 3128
http_port 192.168.13.184:80 accel vhost vport ##監(jiān)控本機(jī)80端口
cache_peer 192.168.13.151 parent 80 0 no-query originserver round-robin max_conn=30 weight=1 name=web1
##節(jié)點服務(wù)器1最大訪問30,權(quán)重1,別名web1
cache_peer 192.168.13.185 parent 80 0 no-query originserver round-robin max_conn=30 weight=1 name=web1
cache_peer_domain web1 web2 www.yun.com  ##訪問yun.com匹配web1,web2節(jié)點
[root@localhost squid]# service squid restart  ##重啟squid服務(wù)

5,在測試機(jī)的admin用戶下配置解析域名地址,并設(shè)置代理

squid-sarg日志,ACL訪問控制,反向代理
squid-sarg日志,ACL訪問控制,反向代理
squid-sarg日志,ACL訪問控制,反向代理
squid-sarg日志,ACL訪問控制,反向代理

謝謝閱讀!


文章標(biāo)題:squid-sarg日志,ACL訪問控制,反向代理
文章源于:http://weahome.cn/article/godecd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部