Catatan ringan kehidupan

Setting POP3 SmartMail dengan GMail sebagai Mail Client

Sebuah Penjelasan 🙂 Dalam sebuah arsitektur email (server), ada dua server yang digunakan. Pertama adalah server untuk menampung surat masuk atau yang disebut dengan Incoming Server. Kedua, server untuk mengirim surat yang disebut dengan Outgoing Server. Kedua server ini menggunakan protokol yang berbeda. INCOMING SERVER Ada 2 protokol yang digunakan SmartMail (Sebelas Maret Mail System – http://webmail.uns.ac.id) untuk melihat/mengakses, serta mengambil email, yaitu POP3 dan IMAP . […]

Read Me

Cara upgrade / patch-ing BIND di FreeBSD

Cara berikut untuk mengantisipasi isu cache poisoning bug yg ada di BIND v9 Bagi pengguna FreeBSD 6.3 (Stable), download patch nya: # cd /tmp # fetch -o bind.patch http://security.FreeBSD.org/patches/SA-08:06/bind63.patch Bagi pengguna FreeBSD 7.0 (Stable), patch-nya : # cd /tmp # fetch -o bind.patch http://security.FreeBSD.org/patches/SA-08:06/bind7.patch Selanjutnya, berikut perintah untuk compiling dan install patch bind 9 : # cd /usr/src # patch < /tmp/bind.patch # cd /usr/src/lib/bind […]

Read Me

BIND under attack

From OpenBSD officially’s site: A vulnerability has been found in BIND’s named server (CVE-2009-0696). An attacker could crash a server with a specially crafted dynamic update message to a zone for which the server is master. patch From ISC (Internet Systems Consortium): Urgent: this exploit is public. Please upgrade immediately. Receipt of a specially-crafted dynamic update message to a zone for which the server is […]

Read Me

Cara simple update ports

Berikut cara sederhana untuk meng-update ports mesin server FreeBSD* Buat file dengan nama (terserah), misalkan soup # vi soup Isikan ke dalam file tersebut seperti berikut ini (copast): # begin of file ‘soup’ *default tag=. *default host=cvsup12.FreeBSD.org *default prefix=/usr *default base=/var/db *default release=cvs delete use-rel-suffix compress src-all # eof soup Simpan file tersebut, kemudian lakukan perintah berikut: # csup soup Update ports akan di proses, […]

Read Me

Shell : Convert Hexadecimal to Decimal

How do I convert hex number to decimal number using a shell script under UNIX / Linux operating systems? Hexadecimal (hex) is a numeral system with a radix, or base, of 16. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine, and A, B, C, D, E, F (or a through f) to represent values ten to fifteen.bc […]

Read Me