亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Squid代理服務器——ACL訪問控制,sarg日志,反向代

發布時間:2020-06-10 14:57:30 來源:網絡 閱讀:400 作者:wx5d2c2d660c282 欄目:建站服務器

一,ACL訪問控制

1,在squid服務器上修改配置文件

[root@squid ~]# vim /etc/squid.conf  ##修改配置文件
# should be allowed
acl hostlocal src 192.168.10.10/32  ##控制hostlocal10.10的主機
# Deny requests to certain unsafe ports
http_access deny hostlocal  ##拒絕訪問
[root@squid ~]# service squid reload   ##重啟squid服務
常用的ACL列表類型:
src→源地址
dst→目標地址
port→目標地址
dstdomain→目標域
time →訪問時間
maxconn→最大并發連接
url_regex→目標URL地址
Urlpath_regex→整個目標URL路徑

二,sarg日志

1,在squid服務器上安裝sarg

[root@squid ~]# mount.cifs //192.168.100.100/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  ##開啟安全防護
[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"  ##網頁標題
output_dir /var/www/html/squid-reports  ##報告輸出目錄
user_ip no  ##使用用戶名顯示
exclude_hosts /usr/local/sarg/noreport  ##不計入排序的站點列表文件
topuser_sort_field connect reverse  
##top排序中有連接次數,訪問字節,降序排列,升序是normal
overwrite_report no  ##同名日志是否覆蓋
mail_utility mailq.postfix  ##發送郵件報告命令
charset UTF-8  ##使用字符集
weekdays 0-6  ##top排行的時間周期
hours 0-23  ##top排行的時間周期
www_document_root /var/www/html  ##網頁根目錄
[root@squid ~]# sarg   ##生成報告
SARG: 紀錄在文件: 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服務
[root@squid squid-reports]# systemctl start httpd.service  ##開啟服務
[root@squid squid-reports]# systemctl stop firewalld.service   ##關閉防火墻
[root@squid squid-reports]# setenforce 0

3,用測試機訪問網頁查看訪問記錄

Squid代理服務器——ACL訪問控制,sarg日志,反向代

周期性計劃任務執行每天生成報告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反向代理

1,在web1服務器上編輯一個網頁內容

[root@web ~]# cd /var/www/html/
[root@web html]# vim index.html  ##編輯網頁內容
this is web01

2,在web2服務器上編輯一個網頁內容

[root@web2 ~]# systemctl stop firewalld.service   ##關閉防火墻
[root@web2 ~]# setenforce 0
[root@web2 ~]# yum install httpd -y   ##安裝httpd服務
[root@web2 ~]# cd /var/www/html/   ##創建網頁內容
[root@web2 html]# vim index.html
this is web02
[root@web2 html]# systemctl start httpd.service 

3,在squid服務上配置反向代理

[root@localhost squid]# vim /etc/squid.conf
# Squid normally listens to port 3128
http_port 192.168.13.184:80 accel vhost vport ##監控本機80端口
cache_peer 192.168.13.151 parent 80 0 no-query originserver round-robin max_conn=30 weight=1 name=web1
##節點服務器1最大訪問30,權重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節點
[root@localhost squid]# service squid restart  ##重啟squid服務

4,在測試機的admin用戶下配置解析域名地址,并設置代理

Squid代理服務器——ACL訪問控制,sarg日志,反向代
Squid代理服務器——ACL訪問控制,sarg日志,反向代

Squid代理服務器——ACL訪問控制,sarg日志,反向代

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平和县| 航空| 抚宁县| 宁德市| 新闻| 云龙县| 东方市| 新平| 胶州市| 凉山| 农安县| 永福县| 读书| 环江| 九寨沟县| 锡林浩特市| 和硕县| 定兴县| 扎赉特旗| 岗巴县| 城口县| 景泰县| 湾仔区| 班玛县| 醴陵市| 绥棱县| 昌江| 鄂州市| 盖州市| 于田县| 甘泉县| 益阳市| 临漳县| 夏邑县| 库车县| 获嘉县| 桑日县| 灌云县| 洞口县| 景宁| 延吉市|