Linux學習筆記 Squid

2021-08-01 05:27:11 字數 2632 閱讀 3468

squid

1.squid正向**

【真機】

【虛擬機器】

瀏覽器 -> edit -> preferences -> advanced -> network -> settings -> manual proxy configuration -> http proxy 172.25.254.29 port 3128 -> ok

2.squid反向**加速

1)單**

【無apache虛擬機器】

60 【新增】cache_peer 172.25.254.129 parent 80 0 no-query

62 #cache_dir ufs /var/spool/squid 100 16 256 ------> cache_dir ufs /var/spool/squid 100 16 256

[root@localhost ~]# systemctl restart squid

瀏覽器訪問 172.25.254.229

2)多**

【輪叫】

60 【新增】cache_peer 172.25.254.129 parent 80 0 no-query originserver name=route1 round-robin weight=3

61 【新增】cache_peer 172.25.254.66 parent 80 0 no-query originserver name=route2 round-robin weight=1

62 【新增】cache_peer_domain www.westos.com route1 route2

##no-query 不查詢  

##originserver當父級節點為route1時做加速

##round-robin檢測輪叫次數(超過限制轉向下乙個**)

##weight= 輪叫限制

[root@localhost ~]# systemctl restart squid

瀏覽器訪問 172.25.254.229 重新整理網頁

重新整理3次後

Squid學習筆記

a.acl訪問控制介紹 格式 acl 名字 型別 內容 httpd access all或deny 名字 這裡的名字和acl的名字是一致的方能生效 在acl中型別有這幾種 src dst,port srcdomain,dstdomain,time,maxcom,url regex,urlpath r...

squid學習筆記 1

squid安裝 可以從squid站點http www.squid cache.org獲取該 版,如red squid啟動 squid z 初始化cache squit start 啟動squid squid k parse 檢查配置是否有錯誤,沒有任何輸出,證明配置基本是正確的 squid zx 可...

調整linux提高squid併發

linux下高併發的squid伺服器,tcp time wait套接字數量經常達到兩 三萬,伺服器很容易被拖死。通過修改linux核心引數,可以減少squid伺服器的time wait套接字 數量。vi etc sysctl.conf 增加以下幾行 引用 net.ipv4.tcp fin timeo...