http_port
8080
icp_port 3130
cache_mem 8 MB
cache_dir ufs /var/spool/squid 100 16 256
acl company src 192.168.1.0/255.255.255.0
http_access allow company
หรือ
ปรับแต่งตามความเหมาะสม
สร้าง Swap file ของ squid
[root@server1 /]# squid z
2006/06/13 16:01:25| Creating Swap Directories
[root@server1 /]#
สั่งให้
Squid ทำงาน
[root@server1 root]# service squid restart
Stopping squid: [FAILED]
Starting squid: .[ OK ]
[root@server1 root]#
ตรวจดูว่ามี User เข้ามาใช้หรือไม่
[root@server1
/]# tail f /var/log/squid/access.log
1150189795.613 3 192.168.1.50 TCP_MISS/304
190 GET http://www.company.com/ - DIRECT/192.168.1.2 -
1150189813.856 13 192.168.1.50 TCP_MISS/304 190 GET http://www.siam.com/
- DIRECT/192.168.1.2 -
1150189821.035 12 192.168.1.50 TCP_MISS/304 192 GET http://www.siam.com/index1.html
- DIRECT/192.168.1.2 -
1150189830.918 12 192.168.1.50 TCP_MISS/304 192 GET http://www.company.com/index1.html
- DIRECT/192.168.1.2 -
ถ้ามี
log ขึ้นแสดงว่าใช้งานได้แล้ว
TCP_MISS
หมายถึง การร้องขอนั้นไม่มีการแคชข้อมูลไว้ กรณีนี้จะต้องไป
GET มาจากเว็ปไซต์ปลายทางมาจริง ซึ่งจะต้องสิ้นเปลืองแบนด์วิธ
TCP_HIT
หรือ TCP_MEM_HIT หมายถึง มีข้อมูลที่เครื่องลูกข่ายร้องขอมาอยู่แล้วในแคช
กรณีนี้ไม่มีการใช้แบนด์วิธ
|