SNMP

August 4, 2008

Introduction

You can monitor your system’s Web performance quite easily with graphical Linux tools. You’ll learn how to use several in this chapter, including MRTG, which is based on SNMP and monitors raw network traffic, and Webalizer, which tracks Web site hits.

SNMP

Most servers, routers and firewalls keep their operational statistics in object identifiers (OIDs) that you can remotely retrieve via the Simple Network Management Protocol (SNMP). For ease of use, equipment vendors provide Management Information Base (MIB) files for their devices that define the functions of the OIDs they contain. That’s a lot of new terms to digest in two sentences, so take a moment to look more closely. Read the rest of this entry »

Install Denyhosts

July 28, 2008

Kali ini saya akan mencoba cara menginstall denyhost dan menjalankannya. Denyhost berguna untuk melindungi akses via ssh dari orang tidakmemiliki akses di server kita. Cara kerja denyhost dengan melihat log authentication yang ada di /var/log/auth.log dengan cara memblokir IP address yang login ke server kita dengan password dan username yang salah. Bahasa kerennya Preventing SSH Dictionary Attack -P . Sehingga IP yang pernah mencoba login ke komputer kita akan dimasukkan daftar Blacklist /etc/hosts.deny. Berikut ini cara melakukan installasi Denyhosts dimana saya disini menggunakan distro Debian Etch. Read the rest of this entry »

Installing LogWatch

July 24, 2008

What’s LogWatch

According its official website, Logwatch is a customizable log analysis system. Logwatch parses through your system’s logs for a given period of time and creates a report analyzing areas that you specify, in as much detail as you require. Logwatch is easy to use and will work right out of the package on most systems.

LogWatch configuration

Since in Engarde’s repositories there still aren’t any Extra Packages for LogWatch you have to download and build it from sources. You can download it from the official home page here.
Read the rest of this entry »

Solaris pkg-get tool

April 11, 2008

Apa itu Solaris pkg-get tool?

pkg-get adalah tool yang dapat melakukan download secara otomatis dan installasi binary paket dari site penyedia paket/archive.

Beberapa fiture pkg-get tool :

  1. Dapat melakukan installasi paket secara online dimana pk-get tool akan mendownloadkan secara otomatis paket yang akan kita install.
  2. Dengan pkg-get tool, kita tidak perlu bingung dengan dependency dari paket yang akan kita install, karena tool ini akan mendownload secara otomatis paket-paket dependency yang dibutuhkan. Read the rest of this entry »

Mendokumentasikan cara konfigurasi mirroring (RAID 1) di Solaris 10

Langkah-langkahnya:

  1. Membuat salinan VTOC

    prtvtoc /dev/rdsk/c0d0s2 | fmthard -s – /dev/rdsk/c0d1s2

  2. Membuat metadb, Metadb ini adalah file database yang akan menampung semua data konfigurasi mirror yang dibuat, sekedar saran, jika Anda bermaksud membuat mirroring di kemudian hari pada mesin Solaris, maka sebaiknya siapakan partisi unused yang nantinya akan berguna untuk menampung semua data konfigurasi mirror yang akan dibuat.

    metadb –a –c 3 –f c0d0s7 c0d1s7 Read the rest of this entry »