Entries from February 2009 ↓
February 22nd, 2009 — Internet, Windows
February 2nd, 2009 — Internet, Windows
Pernah merasakan kebingungan saat setting accounts lebih dari satu menggunakan Outlook 2003. Setiap email yang di download akan masuk ke Inbox email defaults, tapi sekarang dah menemukan solusinya, yaitu dengan menggunakan Rules and Alert..
Misalnya mempunyai email
admin@paidjo.web.id —> Defaults Email
adminsatu@paidjo.web.id
admindua@paidjo.web.id
Pada umumnya untuk email default sudah terbentuk foldernya, jadi untuk yang belum ada silahkan membuat di File –> Data File Management.. dan bila sudah dan belum terdapat folder Inbox, silahkan klik kanan dan pilih New Folder
Membuat Rules nya:
1. Tools -> Rules and Alerts..
2. Klik New Rule.. dan akan mubcul Dialog Box wizard. Pilih “Start from a blank rule” dan “Check messages when they arrive”
3. Klik Next, dah pilih “with specific words in the recipient’s address”, dan pada bagian bawah Step 2 klik specific words yang bergaris bawah, masukkan alamat email Anda “adminsatu@paidjo.web.id”, klik Add dan kemudian OK.
4. Klik Next, kemudian terdapat pilihan akan dibawa kemana email yang masuk nantinya, silahkan pilih “move to specified folder”, dan pada bagian bawah yang bergaris bawah specified dan tentukan folder yang akan ditempatkan nantinya.
5. Klik Next, masuk pada step exceptions. Pada bagian ini diabaikan saja.
6. Klik Next dan Finish. OK
Pastikan rulenya tercentang untuk manandakan rule aktif, untuk email ke 3,4, atau 5 langkahnya sama seperti diatas.
February 1st, 2009 — Internet, Windows
Melanjutkan penulisan tentang Proxy Squid di Windows, sekarang akan dibahas mengenai log analisis dengan menggunakan Squid Efficiency Analyzer 1.1.0. Download disini.
Pada configurasi squid yang saya tuliskan di Proxy Squid di Windows ada sedikit perubahan. Apabila Anda sudah menghinstall squid di Windows yang pertama harus dilakukan adalah:
1. Stop/Disable lebih dahulu squid, Klik Start –> Run ketik services.msc
2. Jalankan program Squideff.exe klik Select file and analyze cari file log yaitu access.log

NOTE:
Di saat melakukan analyze ini squid harus di Disable/Stop terlebih dahulu
Untuk penjelasan Kodenya:
TCP_HIT
A valid copy of the requested object was in the cache.
TCP_MEM_HIT
A valid copy of the requested object was in the cache, AND it was in
memory so it did not have to be read from disk.
TCP_NEGATIVE_HIT
The request was for a negatively-cached object. Negative-caching refers
to caching certain types of errors, such as “404 Not Found.” The amount
of time these errors are cached is controlled with the negative_ttl
configuration parameter.
TCP_MISS
The requested object was not in the cache.
TCP_REFRESH_HIT
The object was in the cache, but STALE. An If-Modified-Since request was
made and a “304 Not Modified” reply was received.
TCP_REF_FAIL_HIT
The object was in the cache, but STALE. The request to validate the object
failed, so the old (stale) object was returned.
TCP_REFRESH_MISS
The object was in the cache, but STALE. An If-Modified-Since request was
made and the reply contained new content.
TCP_CLIENT_REFRESH
The client issued a request with the “no-cache” pragma.
TCP_IMS_HIT
The client issued an If-Modified-Since request and the object was in the
cache and still fresh.
TCP_IMS_MISS
The client issued an If-Modified-Since request for a stale object.
TCP_SWAPFAIL
The object was believed to be in the cache, but could not be accessed.
TCP_DENIED
Access was denied for this request
UDP_HIT
A valid copy of the requested object was in the cache.
UDP_HIT_OBJ
Same as UDP_HIT, but the object data was small enough to be sent in the UDP
reply packet. Saves the following TCP request.
UDP_MISS
The requested object was not in the cache.
UDP_DENIED
Access was denied for this request.
UDP_INVALID
An invalid request was received.
UDP_RELOADING
The ICP request was “refused” because the cache is busy reloading its metadata.