GIGO . wrote:
I am using ISA server as cache_peer parent and runing multiple instances on my 
squid Sever. However i am failing to understand that why the behaviour of Squid 
is extremely slow. At home where i have direct access to internet the same 
setup works fine.Please somebody help me out
regards, Bilal Aslam

First thing to check is access times on the ISA and whether the problem is actually Squid or something else down the software chain.

Extremely slow times are usually the result of DNS failures. Each of the proxies needs to do its own lookups, so any small failure will compound into a big delay very fast.

Your squid does its own DNS lookup on every request to figure out if it's part of localservers ACL or not (in both the always_direct and cache access controls).

Amos

---------------------------------------------------------------------------------------------------------------
My squid server has internet access by being a secureNat client of ISA Server.
My Configuration file for first Instance:
visible_hostname squidLhr
unique_hostname squidMain
pid_filename /var/run/squid.pid
http_port 8080
icp_port 0
snmp_port 3161
access_log /var/logs/access.log squid
cache_log /var/logs/cache.log
cache_store_log /var/logs/store.log
cache_effective_user proxy cache_peer 127.0.0.1 parent 3128 0 default no-digest no-query prefer_direct off # never_direct allow all (handy to test that if the processes are working in collaboration)

cache_dir aufs /var/spool/squid 10000 16 256
coredump_dir /var/spool/squid
cache_swap_low 75
cache_replacement_policy lru
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern . 0 20% 4320
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8
#Define Local Network.
acl FcUsr src "/etc/squid/FcUsr.conf"
acl PUsr src "/etc/squid/PUsr.conf"
acl RUsr src "/etc/squid/RUsr.conf"
#Define Local Servers
acl localServers dst 10.0.0.0/8
#Defining & allowing ports section....
acl SSL_ports port 443          #https
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe_ports port 443         # https
acl Safe_ports port 70          # gopher
acl Safe_ports port 210         # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280         # http-mgmt
acl Safe_ports port 488         # gss-http
acl Safe_ports port 591         # filemaker
acl Safe_ports port 777         # multiling http
acl CONNECT method CONNECT
# Only allow cachemgr access from localhost
http_access allow manager localhost
http_access deny manager
# Deny request to unknown ports
http_access deny !Safe_ports
# Deny request to other than SSL ports
http_access deny CONNECT !SSL_ports
#Allow access from localhost
http_access allow localhost
# Local server should never be forwarded to neighbour/peers and they should 
never be cached.
always_direct allow localservers
cache deny LocalServers
# Windows Update Section...
acl windowsupdate dstdomain windowsupdate.microsoft.com
acl windowsupdate dstdomain .update.microsoft.com
acl windowsupdate dstdomain download.windowsupdate.com
acl windowsupdate dstdomain redir.metaservices.microsoft.com
acl windowsupdate dstdomain images.metaservices.microsoft.com
acl windowsupdate dstdomain c.microsoft.com
acl windowsupdate dstdomain www.download.windowsupdate.com
acl windowsupdate dstdomain wustat.windows.com
acl windowsupdate dstdomain crl.microsoft.com
acl windowsupdate dstdomain sls.microsoft.com
acl windowsupdate dstdomain productactivation.one.microsoft.com
acl windowsupdate dstdomain ntservicepack.microsoft.com
acl wuCONNECT dstdomain www.update.microsoft.com
acl wuCONNECT dstdomain sls.microsoft.com
http_access allow CONNECT wuCONNECT FcUsr
http_access allow CONNECT wuCONNECT PUsr
http_access allow CONNECT wuCONNECT RUsr
http_access allow CONNECT wuCONNECT localhost
http_access allow windowsupdate all
http_access allow windowsupdate localhost
acl workinghours time MTWHF 09:00-12:59
acl workinghours time MTWHF 15:00-17:00
acl BIP dst "/etc/squid/Blocked.conf"
####----Definitions for BlockingRules----#####
###Definition of MP3/MPEG
acl FTP proto FTP
acl MP3url urlpath_regex \.mp3(\?.*)?$
acl Movies rep_mime_type video/mpeg
acl MP3s rep_mime_type audio/mpeg
###Definition of Flash Video
acl deny_rep_mime_flashvideo rep_mime_type video/flv
###Definition of  Porn
acl Sex urlpath_regex sex
acl PornSites url_regex "/etc/squid/pornlist"
####Definition of YouTube.
## The videos come from several domains
acl youtube_domains dstdomain .youtube.com .googlevideo.com .ytimg.com
###Definition of FaceBook
acl facebook_sites dstdomain .facebook.com
#### Definition of MSN Messenger
acl msn urlpath_regex -i gateway.dll
acl msnd dstdomain messenger.msn.com gateway.messenger.hotmail.com
acl msn1 req_mime_type application/x-msn-messenger
####Definition of Skype
acl numeric_IPs url_regex 
^(([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)|(\[([0-9af]+)?:([0-9af:]+)?:([0-9af]+)?\])):443
acl Skype_UA browser ^skype^
##Definition of Yahoo! Messenger
acl ym dstdomain .messenger.yahoo.com .psq.yahoo.com
acl ym dstdomain .us.il.yimg.com .msg.yahoo.com .pager.yahoo.com
acl ym dstdomain .rareedge.com .ytunnelpro.com .chat.yahoo.com
acl ym dstdomain .voice.yahoo.com
acl ymregex url_regex yupdater.yim ymsgr myspaceim
## Other protocols Yahoo!Messenger uses ??
acl ym dstdomain .skype.com .imvu.com
###Definition for Disallowing download of executables from web#####
acl downloads url_regex "/etc/squid/download.conf"
###Definiton of Torrentz####
acl torrentSeeds urlpath_regex \.torrent(\?.*)?$
###Definition of Rapidshare###
acl dlSites dstdomain .rapidshare.com .rapidsharemegaupload.com .filespump.com
###---------------------------------------------########
http_access deny  PornSites
http_access deny Sex
#http_access deny RUsr PornSites #http_access deny PUsr PornSites #deny everyone porn sites.... #http_access deny RUsr Sex #http_access deny PUsr Sex http_access deny PUsr msnd http_access deny RUsr msnd http_access deny PUsr msn http_access deny RUsr msn http_access deny PUsr msn1
http_access deny RUsr msn1
http_access deny PUsr numeric_IPs
http_access deny RUsr numeric_IPs http_access deny PUsr Skype_UA http_access deny RUsr Skype_UA http_access deny RUsr ym http_access deny PUsr ym http_access deny RUsr ymregex http_access deny PUsr ymregex #----Most Restricted settings Exclusive for Normal users......#
http_reply_access deny Movies RUsr
http_reply_access deny MP3s RUsr
http_access deny RUsr FTP
http_access deny RUsr MP3url
http_reply_access deny deny_rep_mime_flashvideo RUsr
http_access deny RUsr youtube_domains
http_access deny RUsr facebook_sites
http_access deny RUsr BIP
http_access deny RUsr downloads http_access deny RUsr torrentSeeds
http_access deny RUsr dlSites
http_access allow PUsr !workinghours youtube_domains
http_access allow PUsr !workinghours facebook_sites
http_access allow PUsr !workinghours BIP
http_access allow FcUsr
http_access allow PUsr
http_access allow RUsr
http_access deny all
My configuratin file for Second Instance: visible_hostname squidLhr
unique_hostname squidCache
pid_filename /var/run/squidCache.pid
http_port 3128
icp_port 0
snmp_port 7172
access_log /var/logs/access2.log squid
cache_log /var/logs/cache2.log
cache_log /var/logs/store2.log
cache_effective_user proxy # If peering with ISA then following options will be required. cache_peer 10.1.82.205 parent 8080 0 default no-digest no-query no-delay never_direct allow all cache_dir aufs /cachedisk1/var/spool/squid 50000 128 256
coredump_dir /cachedisk1/var/spool/squid
cache_swap_low 75
cache_mem 1000 MB
range_offset_limit -1
maximum_object_size 4096 MB
minimum_object_size 10 KB
quick_abort_min -1
cache_replacement_policy lru
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern . 0 20% 4320
#specific for youtube belowone....
refresh_pattern (get_video\?|videoplayback\?|videodownload\?) 5259487 99999999% 
5259487
# For any dynamic content caching.
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8
#Define Local Servers
acl localServers dst 10.0.0.0/8
acl CONNECT method CONNECT
# Only allow cachemgr access from localhost
http_access allow manager localhost
http_access deny manager
#Allow access from localhost
http_access allow localhost
# Local server should never be forwarded to neighbour/peers and they should 
never be cached.
always_direct allow localservers
cache deny LocalServers
http_access deny all
Extrace Log Files for your Reference: Access file for Instance 1: 1269847891.437 509 10.1.245.181 TCP_MISS/000 0 GET http://m.webtrends.com/dcschdsjh00000kj4ozg167mb_4p3c/dcs.gif? - DEFAULT_PARENT/127.0.0.1 -
1269847893.855   2427 10.1.245.181 TCP_MISS/200 69068 GET 
http://www.microsoft.com/silverlight/case-studies/ - DEFAULT_PARENT/127.0.0.1 
text/html
1269847894.567    666 10.1.245.181 TCP_MISS/303 1815 GET 
http://m.webtrends.com/dcschdsjh00000kj4ozg167mb_4p3c/dcs.gif? - 
DEFAULT_PARENT/127.0.0.1 -
1269847894.575    326 10.1.245.181 TCP_MISS/200 3123 GET 
http://www.microsoft.com/silverlight/ClientBin/images/clipping_mask.png - 
DEFAULT_PARENT/127.0.0.1 image/png
1269847895.284    665 10.1.245.181 TCP_MISS/200 990 GET 
http://m.webtrends.com/dcschdsjh00000kj4ozg167mb_4p3c/dcs.gif? - 
DEFAULT_PARENT/127.0.0.1 image/gif
1269847902.548    118 10.1.245.181 TCP_MISS/000 0 GET 
http://m.webtrends.com/dcschdsjh00000kj4ozg167mb_4p3c/dcs.gif? - 
DEFAULT_PARENT/127.0.0.1 -
1269847903.468    931 10.1.245.181 TCP_MISS/200 69068 GET 
http://www.microsoft.com/silverlight/case-studies/ - DEFAULT_PARENT/127.0.0.1 
text/html
1269847907.142   3630 10.1.245.181 TCP_MISS/303 1806 GET 
http://m.webtrends.com/dcschdsjh00000kj4ozg167mb_4p3c/dcs.gif? - 
DEFAULT_PARENT/127.0.0.1 -
1269847910.861   3716 10.1.245.181 TCP_MISS/200 990 GET 
http://m.webtrends.com/dcschdsjh00000kj4ozg167mb_4p3c/dcs.gif? - 
DEFAULT_PARENT/127.0.0.1 image/gif
1269847912.133  10424 10.1.90.161 TCP_MISS/200 1315 GET 
http://us.mg2.mail.yahoo.com/ws/mail/v2.0/formrpc? - DEFAULT_PARENT/127.0.0.1 
text/xml
1269847918.364  13557 10.1.90.161 TCP_MISS/200 42120 GET http://www.dawn.com/ - 
DEFAULT_PARENT/127.0.0.1 text/html
1269847927.309  10280 10.1.90.161 TCP_MISS/200 1636 GET 
http://pubads.g.doubleclick.net/gampad/ads? - DEFAULT_PARENT/127.0.0.1 
text/javascript
1269847930.398    273 10.1.90.161 TCP_MISS/200 2294 GET 
http://us.mg2.mail.yahoo.com/ws/mail/v2.0/formrpc? - DEFAULT_PARENT/127.0.0.1 
text/xml
1269847931.267   1041 10.1.90.161 TCP_MISS/200 9590 GET 
http://us.mg2.mail.yahoo.com/fc/fc? - DEFAULT_PARENT/127.0.0.1 text/html
1269847932.009   1594 10.1.90.161 TCP_MISS/200 81895 GET 
http://us.mg2.mail.yahoo.com/ws/mail/v2.0/formrpc? - DEFAULT_PARENT/127.0.0.1 
text/xml
1269847937.906   5704 10.1.90.161 TCP_MISS/503 4227 POST 
http://us.mg2.mail.yahoo.com/dc/galaxy/update.php? - 
DIRECT/us.mg2.mail.yahoo.com text/html
1269847938.211    256 10.1.90.161 TCP_MISS/200 760 GET 
http://us.mg2.mail.yahoo.com/dc/rs? - DEFAULT_PARENT/127.0.0.1 text/html
1269847940.532  13729 10.1.90.161 TCP_MISS/200 236658 GET 
http://www.linkedin.com/ - DEFAULT_PARENT/127.0.0.1 text/html
1269847942.813  11485 10.1.90.161 TCP_MISS/200 627 GET 
http://us.bc.yahoo.com/b? - DEFAULT_PARENT/127.0.0.1 image/gif
1269847943.257  12221 10.1.90.161 TCP_MISS/200 6451 GET 
http://ad.yieldmanager.com/st? - DEFAULT_PARENT/127.0.0.1 -
1269847945.760   5188 10.1.90.161 TCP_MISS/503 3874 POST 
http://www.linkedin.com/dwr/exec/ChameleonAjaxService.loadPanel.dwr - 
DIRECT/www.linkedin.com text/html
1269847945.760   5177 10.1.90.161 TCP_MISS/503 3904 POST 
http://www.linkedin.com/dwr/exec/ChameleonAjaxService.loadApplicationsFor.dwr - 
DIRECT/www.linkedin.com text/html
1269847950.510   7247 10.1.90.161 TCP_MISS/200 1295 GET 
http://ad.pk.doubleclick.net/adi/linkedin.dart/home;optout=false;lang=en;v=1;u=11013196;ue=1qkp92cqn5irkojdbqgkp1;title=vp;func=admn;co_id=7937;ind=41;csize=h;csize_num=10000;gdr=u;cntry=pk;reg=0;grp=553;grp=1030;grp=1275;grp=1356;grp=3761;grp=21824;grp=23097;grp=32006;grp=33000;grp=35919;grp=37099;edu=15872-2005;jobs=1;sub=0;con=i;age=b;age_num=27;seg=199;seg=187;seg=204;ipc=pk;tile=3;sz=728x90;extra%3Dnull;ord=110413601?
 - DEFAULT_PARENT/127.0.0.1 text/html
1269847950.510  10814 10.1.90.161 TCP_MISS/200 1747 GET 
http://ad.pk.doubleclick.net/adi/linkedin.dart/home;optout=false;lang=en;v=1;u=11013196;ue=1qkp92cqn5irkojdbqgkp1;title=vp;func=admn;co_id=7937;ind=41;csize=h;csize_num=10000;gdr=u;cntry=pk;reg=0;grp=553;grp=1030;grp=1275;grp=1356;grp=3761;grp=21824;grp=23097;grp=32006;grp=33000;grp=35919;grp=37099;edu=15872-2005;jobs=1;sub=0;con=i;age=b;age_num=27;seg=199;seg=187;seg=204;ipc=pk;tile=1;dcopt=ist;sz=1x1;extra%3Dnull;ord=110413601?
 - DEFAULT_PARENT/127.0.0.1 text/html
1269847950.510   9929 10.1.90.161 TCP_MISS/200 1165 GET 
http://ad.pk.doubleclick.net/adi/linkedin.dart/home;optout=false;lang=en;v=1;u=11013196;ue=1qkp92cqn5irkojdbqgkp1;title=vp;func=admn;co_id=7937;ind=41;csize=h;csize_num=10000;gdr=u;cntry=pk;reg=0;grp=553;grp=1030;grp=1275;grp=1356;grp=3761;grp=21824;grp=23097;grp=32006;grp=33000;grp=35919;grp=37099;edu=15872-2005;jobs=1;sub=0;con=i;age=b;age_num=27;seg=199;seg=187;seg=204;ipc=pk;tile=2;sz=300x250;extra%3Dnull;ord=110413601?
 - DEFAULT_PARENT/127.0.0.1 text/html
1269847951.359   8540 10.1.90.161 TCP_MISS/200 9938 GET 
http://www.lmodules.com/opensocial/ifr? - DEFAULT_PARENT/127.0.0.1 text/html
1269847951.640  11042 10.1.90.161 TCP_MISS/200 75567 GET 
http://www.lmodules.com/opensocial/ifr? - DEFAULT_PARENT/127.0.0.1 text/html
1269847955.962   4850 10.1.90.161 TCP_MISS/200 1732 GET 
http://media02.linkedin.com/mpr/mpr/shrink_40_40/p/1/000/04b/24a/377bdfb.jpg - 
DEFAULT_PARENT/127.0.0.1 image/jpeg
1269847956.058  10293 10.1.90.161 TCP_MISS/200 1688 GET 
http://media02.linkedin.com/mpr/mpr/shrink_40_40/p/1/000/017/2b0/3b0d743.jpg - 
DEFAULT_PARENT/127.0.0.1 image/jpeg
1269847956.060   4696 10.1.90.161 TCP_MISS/200 1815 GET 
http://media02.linkedin.com/mpr/mpr/shrink_40_40/p/3/000/044/2c3/16275fd.jpg - 
DEFAULT_PARENT/127.0.0.1 image/jpeg
1269847956.069  10304 10.1.90.161 TCP_MISS/200 1872 GET 
http://media02.linkedin.com/mpr/mpr/shrink_40_40/p/2/000/01e/2e5/0251c31.jpg - 
DEFAULT_PARENT/127.0.0.1 image/jpeg
1269847956.352    279 10.1.90.161 TCP_MISS/200 2136 GET 
http://www.linkedin.com/csp/ads? - DEFAULT_PARENT/127.0.0.1 text/html
1269847956.354    291 10.1.90.161 TCP_MISS/200 7314 GET 
http://www.linkedin.com/csp/ads? - DEFAULT_PARENT/127.0.0.1 text/html
1269847956.646    290 10.1.90.161 TCP_MISS/200 8073 GET 
http://www.linkedin.com/csp/ads? - DEFAULT_PARENT/127.0.0.1 text/html
1269847957.480   1416 10.1.90.161 TCP_MISS/200 6881 GET 
http://ad.yieldmanager.com/imp? - DEFAULT_PARENT/127.0.0.1 
application/x-javascript
1269847960.796  33481 10.1.90.161 TCP_MISS/000 0 GET 
http://ad.au.doubleclick.net/adj/Universities/UNSW;site=pakistandawnunsw2010;sz=468x60;ord=9066450238517498?
 - DEFAULT_PARENT/127.0.0.1 -
1269847961.416  10902 10.1.90.161 TCP_MISS/200 1790 GET 
http://media01.linkedin.com/mpr/mpr/shrink_40_40/p/3/000/02d/1b9/051abd1.jpg - 
DEFAULT_PARENT/127.0.0.1 image/jpeg
1269847961.462   4808 10.1.90.161 TCP_MISS/000 0 GET 
http://ad.pk.doubleclick.net/imp;v7;i;211464746;0-0;1;13358575;0/0;28981371/28999250/1;;~aopt=2/0/ff/0;~okv=;optout=false;lang=en;v=1;u=11013196;ue=1qkp92cqn5irkojdbqgkp1;title=vp;func=admn;co_id=7937;ind=41;csize=h;csize_num=10000;gdr=u;cntry=pk;reg=0;grp=553;grp=1030;grp=1275;grp=1356;grp=3761;grp=21824;grp=23097;grp=32006;grp=33000;grp=35919;grp=37099;edu=15872-2005;jobs=1;sub=0;con=i;age=b;age_num=27;seg=199;seg=187;seg=204;ipc=pk;tile=1;dcopt=ist;sz=1x1;extra%3Dnull;~cs=w%3fhttp://b.collective-media.net/seg/cm/li_ros
 - DEFAULT_PARENT/127.0.0.1 -
1269847961.463   5498 10.1.90.161 TCP_MISS/000 0 GET 
http://media03.linkedin.com/mpr/mpr/shrink_40_40/p/2/000/037/040/2027152.jpg - 
DEFAULT_PARENT/127.0.0.1 -
1269847961.463  10947 10.1.90.161 TCP_MISS/000 0 GET 
http://media03.linkedin.com/mpr/mpr/shrink_40_40/p/3/000/048/1c7/0dd33cf.jpg - 
DEFAULT_PARENT/127.0.0.1 -
1269847961.463  10946 10.1.90.161 TCP_MISS/000 0 GET 
http://media01.linkedin.com/mpr/mpr/shrink_40_40/p/1/000/024/3a1/2916e59.jpg - 
DEFAULT_PARENT/127.0.0.1 -
1269847968.890   7423 10.1.90.161 TCP_MISS/200 2707 GET 
http://media.linkedin.com/media/p/2/000/04e/070/35303cc.png - 
DEFAULT_PARENT/127.0.0.1 image/x-png
1269847968.906   7440 10.1.90.161 TCP_MISS/200 2124 GET 
http://media.linkedin.com/media/p/3/000/051/375/1d81b4d.png - 
DEFAULT_PARENT/127.0.0.1 image/x-png
1269847971.208  10409 10.1.90.161 TCP_MISS/200 17279 GET 
http://content.yieldmanager.edgesuite.net/atoms/2f/f0/28/32/2ff02832a9057cabe92e34d7f20c29d2.swf?
 - DEFAULT_PARENT/127.0.0.1 application/x-shockwave-flash
1269848043.070  10364 10.1.90.161 TCP_MISS/200 451 GET 
http://us.mg2.mail.yahoo.com/ws/cal/cal/1/BMDC? - DEFAULT_PARENT/127.0.0.1 
text/x-json
1269848150.859   5078 10.1.80.241 TCP_MEM_HIT/302 809 GET 
http://fxfeeds.mozilla.com/en-US/firefox/headlines.xml - NONE/- text/html
1269848150.862      0 10.1.80.241 TCP_MEM_HIT/302 853 GET 
http://fxfeeds.mozilla.com/firefox/headlines.xml - NONE/- text/html
1269848156.031  10205 10.1.80.241 TCP_MISS/200 1727 GET 
http://sorry.google.com/favicon.ico - DEFAULT_PARENT/127.0.0.1 image/x-icon
1269848160.088    297 10.1.80.241 TCP_MISS/200 1212 GET 
http://sorry.google.com/sorry/Captcha? - DEFAULT_PARENT/127.0.0.1 text/html
1269848168.261   8148 10.1.80.241 TCP_MISS/000 0 GET 
http://www.google.com/firefox? - DEFAULT_PARENT/127.0.0.1 -
1269848168.887    620 10.1.80.241 TCP_MISS/503 2549 GET 
http://sorry.google.com/sorry/Captcha? - DEFAULT_PARENT/127.0.0.1 text/html
1269848178.804   9902 10.1.80.241 TCP_MISS/000 0 GET 
http://sorry.google.com/sorry/image? - DEFAULT_PARENT/127.0.0.1 -
1269848179.101    307 10.1.80.241 TCP_MISS/503 2549 GET 
http://sorry.google.com/sorry/Captcha? - DEFAULT_PARENT/127.0.0.1 text/html
1269848179.970    853 10.1.80.241 TCP_MISS/200 2910 GET 
http://sorry.google.com/sorry/image? - DEFAULT_PARENT/127.0.0.1 image/jpeg
1269848185.656  34790 10.1.80.241 TCP_REFRESH_MODIFIED/200 27907 GET 
http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml - 
DEFAULT_PARENT/127.0.0.1 text/xml
1269848185.919    313 10.1.80.241 TCP_MISS/200 1212 GET 
http://sorry.google.com/sorry/Captcha? - DEFAULT_PARENT/127.0.0.1 text/html
1269848186.962    571 10.1.80.241 TCP_MISS/302 830 GET 
http://www.google.com/firefox? - DEFAULT_PARENT/127.0.0.1 text/html
1269848197.189  10222 10.1.80.241 TCP_MISS/200 8480 GET 
http://www.google.com.pk/firefox? - DEFAULT_PARENT/127.0.0.1 text/html
1269848197.308    103 10.1.80.241 TCP_MISS/200 4421 GET 
http://www.google.com.pk/images/firefox/firefox35_v1.png - 
DEFAULT_PARENT/127.0.0.1 image/png
1269848197.318    104 10.1.80.241 TCP_MISS/200 784 GET 
http://www.google.com.pk/images/firefox/gradsprite2.png - 
DEFAULT_PARENT/127.0.0.1 image/png
1269848197.425    214 10.1.80.241 TCP_MISS/200 10286 GET 
http://www.google.com.pk/images/firefox/sprite2.png - DEFAULT_PARENT/127.0.0.1 
image/png
1269848197.666    432 10.1.80.241 TCP_MISS/200 40985 GET 
http://www.google.com.pk/extern_js/f/CgJlbhICcGsrMAo4XkAdLCswDjgMLCswFjgVLCswFzgGLCswGDgFLCswGTgZLCswJTjKiAEsKzAnOAQsKzAqOAMsKzArOAosKzA8OAIsKzBAOA0sKzBEOAIsKzBOOAEs/6BUmTjg1vf8.js
 - DEFAULT_PARENT/127.0.0.1 text/javascript
1269848197.788    104 10.1.80.241 TCP_MISS/200 909 GET 
http://www.google.com.pk/compressiontest/gzip.html - DEFAULT_PARENT/127.0.0.1 
text/html
1269848197.900    101 10.1.80.241 TCP_MISS/200 1729 GET 
http://www.google.com.pk/favicon.ico - DEFAULT_PARENT/127.0.0.1 image/x-icon
1269848197.904    107 10.1.80.241 TCP_MISS/200 7697 GET 
http://www.google.com.pk/images/nav_logo4.png - DEFAULT_PARENT/127.0.0.1 
image/png
1269848210.225   5075 10.1.80.241 TCP_MISS/404 0 CONNECT sb-ssl.google.com:443 
- DIRECT/- -
1269848386.652  10385 10.1.90.161 TCP_MISS/200 2294 GET 
http://us.mg2.mail.yahoo.com/ws/mail/v2.0/formrpc? - DEFAULT_PARENT/127.0.0.1 
text/xml
1269848391.806   5137 10.1.90.161 TCP_MISS/200 84994 GET 
http://us.mg2.mail.yahoo.com/ws/mail/v2.0/formrpc? - DEFAULT_PARENT/127.0.0.1 
text/xml
1269848397.061   5051 10.1.90.161 TCP_MISS/503 4227 POST 
http://us.mg2.mail.yahoo.com/dc/galaxy/update.php? - 
DIRECT/us.mg2.mail.yahoo.com text/html
1269848473.763  10668 10.1.90.161 TCP_MISS/200 451 GET 
http://us.mg2.mail.yahoo.com/ws/cal/cal/1/BMDC? - DEFAULT_PARENT/127.0.0.1 
text/x-json
1269848504.410   5051 10.1.245.181 TCP_MISS/503 3171 POST 
http://safebrowsing.clients.google.com/safebrowsing/downloads? - 
DIRECT/safebrowsing.clients.google.com text/html
1269848741.528   5050 10.1.80.241 TCP_MISS/404 0 CONNECT addons.mozilla.org:443 
- DIRECT/- -
1269848741.556   5054 10.1.80.241 TCP_MISS/404 0 CONNECT 
versioncheck.addons.mozilla.org:443 - DIRECT/- -
1269848771.634  25506 10.1.80.241 TCP_MISS/206 300536 GET 
http://ftp.uni-kl.de/pub/mozilla/firefox/releases/3.6.2/update/win32/en-US/firefox-3.6rc2-3.6.2.partial.mar
 - DEFAULT_PARENT/127.0.0.1 application/octet-stream
1269848884.291  11651 10.1.90.161 TCP_MISS/200 27872 GET 
http://www.facebook.com/ - DEFAULT_PARENT/127.0.0.1 text/html
1269848890.085    300 10.1.90.161 TCP_MISS/200 990 GET 
http://us.mg2.mail.yahoo.com/ws/mail/v2.0/formrpc? - DEFAULT_PARENT/127.0.0.1 
text/xml
1269848890.178  11122 10.1.90.161 TCP_MISS/200 9589 GET 
http://us.mg2.mail.yahoo.com/fc/fc? - DEFAULT_PARENT/127.0.0.1 text/html
1269848890.278  11238 10.1.90.161 TCP_MISS/200 9785 GET 
http://us.mg2.mail.yahoo.com/ws/mail/v2.0/formrpc? - DEFAULT_PARENT/127.0.0.1 
text/xml
1269848890.582    269 10.1.90.161 TCP_MISS/302 984 GET 
http://us.mg2.mail.yahoo.com/ya/download? - DEFAULT_PARENT/127.0.0.1 text/html
1269848890.584    270 10.1.90.161 TCP_MISS/302 984 GET 
http://us.mg2.mail.yahoo.com/ya/download? - DEFAULT_PARENT/127.0.0.1 text/html
Access file for my Second Instance: 1269846224.374 643 127.0.0.1 TCP_MISS/200 552 GET http://www.yahoo.com/p.gif;_ylt=AhJzTE3C7ziCEa8FVV.gE.ebvZx4? - DEFAULT_PARENT/10.1.82.205 image/gif
1269846224.403    643 127.0.0.1 TCP_MISS/200 552 GET 
http://www.yahoo.com/p.gif;_ylt=An2jF8ImepPI4VcinfM2L7ubvZx4? - 
DEFAULT_PARENT/10.1.82.205 image/gif
1269846227.191   6011 127.0.0.1 TCP_MISS/200 521 GET http://us.bc.yahoo.com/b? 
- DEFAULT_PARENT/10.1.82.205 image/gif
1269846230.550    324 127.0.0.1 TCP_MISS/304 275 GET 
http://www.yahoo.com/favicon.ico - DEFAULT_PARENT/10.1.82.205 -
1269846432.744   5702 127.0.0.1 TCP_MISS/200 552 GET 
http://www.yahoo.com/p.gif;_ylt=Ak8_GEejXMbcSyEWWhOVdFCbvZx4;_ylu=X3oDMTM4OTZkcHQ2BGEDMTAwMzI4IHNwb3J0cyBmaW5hbCBmb3VyIHNldCB0BGNwb3MDNARnA2lkLTIzNjExBGludGwDdXMEcGtndgM4BHNlYwN0ZC1mZWF0BHNsawN0aHVtYgRzbHBvcwNGBHRlc3QDNzAx?
 - DEFAULT_PARENT/10.1.82.205 image/gif
1269846432.745   5703 127.0.0.1 TCP_MISS/200 552 GET 
http://www.yahoo.com/p.gif;_ylt=AghAC1ghcdd3ARFRO7qO2e2bvZx4;_ylu=X3oDMTNyZ2NxM3ZlBGEDMTAwMzI4IHNoaW5lIGNlbGVicml0eSBmYXNoaW9uIHdhciBlbGVjdHJhIHN3aWZ0BGNwb3MDMwRnA2lkLTIzNjA5BGludGwDdXMEcGtndgMxMwRzZWMDdGQtZmVhdARzbGsDdGh1bWIEc2xwb3MDRgR0ZXN0AzcwMQ--?
 - DEFAULT_PARENT/10.1.82.205 image/gif
1269846433.095   6053 127.0.0.1 TCP_MISS/200 5991 GET http://www.yahoo.com/js? 
- DEFAULT_PARENT/10.1.82.205 text/json
1269846443.238   5059 127.0.0.1 TCP_MISS/200 23868 GET 
http://l.yimg.com/a/i/ww/news/2010/03/28/electraswift-pd.jpg - 
DEFAULT_PARENT/10.1.82.205 image/jpeg
1269847181.990   5579 127.0.0.1 TCP_MISS/302 658 GET 
http://news.bbc.co.uk/go/rss/-/2/hi/technology/8528672.stm - 
DEFAULT_PARENT/10.1.82.205 text/html
1269847182.593     10 127.0.0.1 TCP_MISS/200 26007 GET 
http://news.bbc.co.uk/js/newsi/latest/newsi.js? - DEFAULT_PARENT/10.1.82.205 
application/x-javascript
1269847182.916    923 127.0.0.1 TCP_MISS/200 60268 GET 
http://news.bbc.co.uk/2/hi/technology/8528672.stm - DEFAULT_PARENT/10.1.82.205 
text/html
1269847192.901   5154 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/js/app/ticker/v1_2_0/ticker.js - 
DEFAULT_PARENT/10.1.82.205 -
1269847192.905      0 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/nol/ukfs_news/js/av.js? - DEFAULT_PARENT/10.1.82.205 -
1269847192.907   5160 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/js/app/shared/v2_6/bbc_fmtj.js - 
DEFAULT_PARENT/10.1.82.205 -
1269847192.907   5161 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/css/screen/1_0_8/shared/emp.css - 
DEFAULT_PARENT/10.1.82.205 -
1269847192.909   5162 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/css/screen/1_0_8/shared/v4/toggle.css - 
DEFAULT_PARENT/10.1.82.205 -
1269847192.909      1 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/js/app/tools/hide_and_show/hide_and_show.js - 
DEFAULT_PARENT/10.1.82.205 -
1269847192.912      1 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/nol/shared/js/csf_2.js - DEFAULT_PARENT/10.1.82.205 -
1269847192.914      1 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/js/app/site_wide_alert/site_wide_alert.js - 
DEFAULT_PARENT/10.1.82.205 -
1269847192.915      4 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/js/app/bookmark/bookmark.js? - 
DEFAULT_PARENT/10.1.82.205 -
1269847192.916   5169 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/css/screen/1_0_8/shared/v4/sitewidealert.css - 
DEFAULT_PARENT/10.1.82.205 -
1269847192.916      4 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/js/app/radio/aod/radioplayer.js - 
DEFAULT_PARENT/10.1.82.205 -
1269847192.923      5 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/nol/shared/js/nol4.js? - DEFAULT_PARENT/10.1.82.205 -
1269847192.925      6 127.0.0.1 TCP_MISS/200 9116 GET 
http://news.bbc.co.uk/css/screen/shared/3pt_ads.css - 
DEFAULT_PARENT/10.1.82.205 text/css
1269847192.927     10 127.0.0.1 TCP_MISS/304 278 GET 
http://news.bbc.co.uk/nol/shared/js/livestats_v1_1.js? - 
DEFAULT_PARENT/10.1.82.205 -
1269847192.929   5181 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/css/screen/1_0_8/shared/v4/styles.css - 
DEFAULT_PARENT/10.1.82.205 -
1269847192.939   5192 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/js/app/shared/common/v2_8/bbc_fmtj_common.js - 
DEFAULT_PARENT/10.1.82.205 -
1269847193.381      1 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/nol/shared/img/v3/print.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847193.384      1 127.0.0.1 TCP_MISS/200 636 GET 
http://newsimg.bbc.co.uk/nol/shared/img/v3/start_quote_rb.gif - 
DEFAULT_PARENT/10.1.82.205 image/gif
1269847193.388      4 127.0.0.1 TCP_MISS/200 633 GET 
http://newsimg.bbc.co.uk/nol/shared/img/v3/end_quote_rb.gif - 
DEFAULT_PARENT/10.1.82.205 image/gif
1269847193.391      6 127.0.0.1 TCP_MISS/200 5017 GET 
http://news.bbc.co.uk/js/app/bbccom/adsense_write.js - 
DEFAULT_PARENT/10.1.82.205 application/x-javascript
1269847193.393      6 127.0.0.1 TCP_MISS/200 3817 GET 
http://news.bbc.co.uk/js/app/bbccom/vs.js - DEFAULT_PARENT/10.1.82.205 
application/x-javascript
1269847193.474   5729 127.0.0.1 TCP_MISS/200 5424 GET 
http://newsimg.bbc.co.uk/js/app/av/emp/v11/config.sjson? - 
DEFAULT_PARENT/10.1.82.205 text/javascript
1269847193.908    526 127.0.0.1 TCP_MISS/200 496 GET 
http://newsimg.bbc.co.uk/shared/img/999999.gif - DEFAULT_PARENT/10.1.82.205 
image/gif
1269847193.910    561 127.0.0.1 TCP_MISS/304 403 GET 
http://newsimg.bbc.co.uk/nol/shared/img/v3/email.gif - 
DEFAULT_PARENT/10.1.82.205 image/gif
1269847193.914      1 127.0.0.1 TCP_MISS/200 4842 GET 
http://newsimg.bbc.co.uk/media/images/47545000/jpg/_47545665_126.jpg - 
DEFAULT_PARENT/10.1.82.205 image/jpeg
1269847193.920      1 127.0.0.1 TCP_MISS/200 7535 GET 
http://newsimg.bbc.co.uk/media/images/47479000/jpg/_47479925_jarawa1_126.jpg - 
DEFAULT_PARENT/10.1.82.205 image/jpeg
1269847193.928      1 127.0.0.1 TCP_MISS/200 6120 GET 
http://newsimg.bbc.co.uk/media/images/47355000/jpg/_47355419_spam_promo_afp.jpg 
- DEFAULT_PARENT/10.1.82.205 image/jpeg
1269847194.190    793 127.0.0.1 TCP_MISS/200 13815 GET 
http://newsimg.bbc.co.uk/media/images/47355000/jpg/_47355414_tyson_afp_226.jpg 
- DEFAULT_PARENT/10.1.82.205 image/jpeg
1269847194.294    384 127.0.0.1 TCP_MISS/200 496 GET 
http://news.bbc.co.uk/js/app/bbccom/bbccom_capable.js? - 
DEFAULT_PARENT/10.1.82.205 application/x-javascript
1269847194.316    384 127.0.0.1 TCP_MISS/200 469 GET 
http://news.bbc.co.uk/sol/shared/img/timezone/z.zzz - 
DEFAULT_PARENT/10.1.82.205 text/plain
1269847194.324      7 127.0.0.1 TCP_MISS/200 31960 GET 
http://news.bbc.co.uk/js/app/bbccom/3pt_zone_file.js - 
DEFAULT_PARENT/10.1.82.205 application/x-javascript
1269847194.458   1060 127.0.0.1 TCP_MISS/200 17147 GET 
http://newsimg.bbc.co.uk/media/images/47355000/jpg/_47355415_email_afp_226.jpg 
- DEFAULT_PARENT/10.1.82.205 image/jpeg
1269847194.480   1098 127.0.0.1 TCP_MISS/200 15530 GET 
http://newsimg.bbc.co.uk/media/images/47352000/jpg/_47352978_007404882-1.jpg - 
DEFAULT_PARENT/10.1.82.205 image/jpeg
1269847204.937   5530 127.0.0.1 TCP_MISS/200 3709 GET 
http://edge.quantserve.com/quant.js - DEFAULT_PARENT/10.1.82.205 
application/x-javascript
1269847206.000   5585 127.0.0.1 TCP_MISS/200 4125 GET 
http://ad.doubleclick.net/adj/bbccom.live.site.news/news_technology_content;sectn=news;ctype=content;news=technology;adsense_middle=adsense_middle;adsense_mpu=adsense_mpu;referrer=nonbbc;referrer_domain=;rsi=J08781_10139;headline=whyspamfiltersreadobsceneforclean;slot=leaderboard;sz=728x90,970x66;tile=1;ord=99149308992056?
 - DEFAULT_PARENT/10.1.82.205 application/x-javascript
1269847206.914   8491 127.0.0.1 TCP_MISS/200 476 GET 
http://stats.bbc.co.uk/o.gif? - DEFAULT_PARENT/10.1.82.205 image/gif
1269847207.519   9122 127.0.0.1 TCP_MISS/200 4031 GET 
http://js.revsci.net/gateway/gw.js? - DEFAULT_PARENT/10.1.82.205 text/javascript
1269847216.105   5051 127.0.0.1 TCP_MISS/304 276 GET 
http://s0.2mdn.net/879366/flashwrite_1_2.js - DEFAULT_PARENT/10.1.82.205 -
1269847216.132      1 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/nol/shared/img/v4/banner.jpg? - 
DEFAULT_PARENT/10.1.82.205 -
1269847216.132      1 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/nol/shared/img/v4/logo.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847216.478    288 127.0.0.1 TCP_MISS/200 34640 GET 
http://s0.2mdn.net/2672146/NW_728x90_employer.swf? - DEFAULT_PARENT/10.1.82.205 
application/x-shockwave-flash
1269847216.490    352 127.0.0.1 TCP_MISS/200 516 GET 
http://ad.doubleclick.net/adj/bbccom.live.site.news/news_technology_content;sectn=news;ctype=content;news=technology;adsense_middle=adsense_middle;adsense_mpu=adsense_mpu;referrer=nonbbc;referrer_domain=;rsi=J08781_10139;headline=whyspamfiltersreadobsceneforclean;slot=button;sz=120x240;tile=5;ord=99149308992056?
 - DEFAULT_PARENT/10.1.82.205 application/x-javascript
1269847216.530      1 127.0.0.1 TCP_MISS/200 508 GET 
http://newsimg.bbc.co.uk/nol/shared/img/v4/bullet_rb.gif - 
DEFAULT_PARENT/10.1.82.205 image/gif
1269847216.903    349 127.0.0.1 TCP_MISS/200 587 GET 
http://ad.doubleclick.net/adj/bbccom.live.site.news/news_technology_content;sectn=news;ctype=content;news=technology;adsense_middle=adsense_middle;adsense_mpu=adsense_mpu;referrer=nonbbc;referrer_domain=;rsi=J08781_10139;headline=whyspamfiltersreadobsceneforclean;slot=storyprintsponsorship;sz=88x31;tile=7;ord=99149308992056?
 - DEFAULT_PARENT/10.1.82.205 application/x-javascript
1269847227.069   5054 127.0.0.1 TCP_MISS/200 34052 GET 
http://pagead2.googlesyndication.com/pagead/show_ads.js - 
DEFAULT_PARENT/10.1.82.205 text/javascript
1269847240.729   8484 127.0.0.1 TCP_MISS/200 3553 GET 
http://googleads.g.doubleclick.net/pagead/ads? - DEFAULT_PARENT/10.1.82.205 
text/javascript
1269847241.084    348 127.0.0.1 TCP_MISS/200 513 GET 
http://ad.doubleclick.net/adj/bbccom.live.site.news/news_technology_content;sectn=news;ctype=content;news=technology;adsense_middle=adsense_middle;adsense_mpu=adsense_mpu;referrer=nonbbc;referrer_domain=;rsi=J08781_10139;headline=whyspamfiltersreadobsceneforclean;slot=mpu;sz=300x250;tile=4;ord=99149308992056?
 - DEFAULT_PARENT/10.1.82.205 application/x-javascript
1269847241.141      1 127.0.0.1 TCP_MISS/304 279 GET 
http://newsimg.bbc.co.uk/nol/shared/bsp/hi/live_stats/img/v4/tab_nav_line.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.144      1 127.0.0.1 TCP_MISS/304 279 GET 
http://newsimg.bbc.co.uk/nol/shared/bsp/hi/live_stats/img/v4/two.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.145      1 127.0.0.1 TCP_MISS/304 279 GET 
http://newsimg.bbc.co.uk/nol/shared/bsp/hi/live_stats/img/v4/three.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.146      1 127.0.0.1 TCP_MISS/304 279 GET 
http://newsimg.bbc.co.uk/nol/shared/bsp/hi/live_stats/img/v4/four.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.147      1 127.0.0.1 TCP_MISS/304 279 GET 
http://newsimg.bbc.co.uk/nol/shared/bsp/hi/live_stats/img/v4/five.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.149      1 127.0.0.1 TCP_MISS/304 279 GET 
http://newsimg.bbc.co.uk/nol/shared/bsp/hi/live_stats/img/v4/eight.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.152      1 127.0.0.1 TCP_MISS/304 279 GET 
http://newsimg.bbc.co.uk/nol/shared/bsp/hi/live_stats/img/v4/six.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.152     10 127.0.0.1 TCP_MISS/304 279 GET 
http://newsimg.bbc.co.uk/nol/shared/bsp/hi/live_stats/img/v4/one.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.152      1 127.0.0.1 TCP_MISS/304 279 GET 
http://newsimg.bbc.co.uk/nol/shared/bsp/hi/live_stats/img/v4/seven.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.153      2 127.0.0.1 TCP_MISS/304 279 GET 
http://newsimg.bbc.co.uk/nol/shared/bsp/hi/live_stats/img/v4/nine.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.154      1 127.0.0.1 TCP_MISS/304 279 GET 
http://newsimg.bbc.co.uk/nol/shared/bsp/hi/live_stats/img/v4/ten.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.159      1 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/sol/shared/img/v4/service_bg.jpg - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.160      1 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/sol/shared/img/v4/icons/email2.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.162      1 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/sol/shared/img/v4/icons/mobile2.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.163      1 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/sol/shared/img/v4/icons/desktop2.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.164      2 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/sol/shared/img/v4/icons/feeds2.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847241.164      1 127.0.0.1 TCP_MISS/304 278 GET 
http://newsimg.bbc.co.uk/sol/shared/img/v4/icons/podcasts2.gif - 
DEFAULT_PARENT/10.1.82.205 -
1269847251.831   5602 127.0.0.1 TCP_MISS/200 3331 GET 
http://pix04.revsci.net/J08781/b3/0/3/0902050/397928698.js? - 
DEFAULT_PARENT/10.1.82.205 text/javascript
1269847251.874   5619 127.0.0.1 TCP_MISS/200 707 GET 
http://visualscience.external.bbc.co.uk/zaguk.gif? - DEFAULT_PARENT/10.1.82.205 
image/gif
1269847261.949   5060 127.0.0.1 TCP_MISS/304 278 GET 
http://news.bbc.co.uk/js/app/av/emp/v11/bbccom_emp.js - 
DEFAULT_PARENT/10.1.82.205 -
1269847262.261   5373 127.0.0.1 TCP_MISS/200 429 GET 
http://pixel.quantserve.com/pixel;r=778672789;fpan=0;fpa=P0-632521698-1261819448812;ns=0;url=http%3A%2F%2Fnews.bbc.co.uk%2F2%2Fhi%2Ftechnology%2F8528672.stm;ref=;ce=1;je=0;sr=1366x768x24;dg=P10855-W-FF-3;dst=0;et=1269847244073;tzo=-300;a=p-ccrmZLtMqYB8w
 - DEFAULT_PARENT/10.1.82.205 image/gif
1269847615.852   6351 127.0.0.1 TCP_MISS/200 90073 GET 
http://news.bbc.co.uk/2/hi/asia-pacific/default.stm - 
DEFAULT_PARENT/10.1.82.205 text/html
1269847626.108   5791 127.0.0.1 TCP_MISS/200 5424 GET 
http://newsimg.bbc.co.uk/js/app/av/emp/v11/config.sjson? - 
DEFAULT_PARENT/10.1.82.205 text/javascript
1269847626.133      1 127.0.0.1 TCP_MISS/200 1162 GET 
http://newsimg.bbc.co.uk/nol/shared/img/nav/v3_map_asia_pac_rb.gif - 
DEFAULT_PARENT/10.1.82.205 image/gif
_________________________________________________________________
Hotmail: Trusted email with powerful SPAM protection.
https://signup.live.com/signup.aspx?id=60969


--
Please be using
  Current Stable Squid 2.7.STABLE9 or 3.1.1

Reply via email to