Jumat, 03 Juli 2009

IOS Hunter : Cisco IOS Serching Tools

Ios Hunter!

Tools for Network Administrators who want to explore ios cisco router or switch. This tool to explore various FTP or website that provides ios that we find. Total more than 1800 sources found by Hunter ios.

Ios from router to Cisco 800 Series Router with up to Cisco 7500 can we get with this tool. Switch series catalyst catalyst catalyst up to 8500!

Cisco ios other products that we can get a Cisco Access Server, Cisco concentrator, mica cisco modem, cisco analog modem, etc..

Unfortunately for the trial version all file can't be downloaded. But don't worry .. also many versions that can be downloaded.

Minimum Computer Specifications: Windows 95/98/Me/NT4/2000/XP

File Size: 800 KB

Price: $ 59.95

Download: ios Hunter 3.2



Sabtu, 20 Juni 2009

[FREE] Youtube Downloader V2.1.7, Download youtube sepuasnya

Banyak orang mengira video di youtube tidak bisa didownload. Dengan youtube downloader kita bisa download video dari Youtube, Google Video, Yahoo video ke berbagai format video.

Selain itu software ini dapat mengkonversi File yang sudah didownload ke Ipd, Iphone, PSP, Cell Phone, Windows Media, XVid dan MP3.

Spesifikasi Komputer yang dibutuhkan :
* Intel Pentium 233 Mhz (or equivalent processor, such as AMD) or better
* Windows 2000/XP/Vista
* Internet Explorer 5.0 or higher
* 64 MB of RAM
* Adobe Flash Player
* Visual Basic 6.0 Run-Time Files

Website :
http://youtubedownload.altervista.org

Jumat, 19 Juni 2009

Simple Collecting syslog by Kiwi Syslog

a. Installing Kiwi Syslog Daemon
I use Kiwi Syslogd 8.2.18 for this setup. Please install Kiwi Syslog daemon untill you find this view.
b. Install Syslog service and Start syslog service.



c. Configure Router/Switch

Switch#conf t
Switch(config)#logging
(Server IP Address)
Switch(config)#logging trap informational

Switch(config)#exit


For trap mode, you can choose trap mode. Here are 8 modes trap
<0-7> Logging severity level
alerts Immediate action needed (severity=1)
critical Critical conditions (severity=2)
debugging Debugging messages (severity=7)
emergencies System is unusable (severity=0)
errors Error conditions (severity=3)
informational Informational messages (severity=6)
notifications Normal but significant conditions (severity=5)
warnings Warning conditions (severity=4)


You can try if your syslog working or not by enter command clear counter
Switch#clear counter
Switch#


Now, you can sse at your syslog.

Kamis, 18 Juni 2009

Configuring Basic Router Part-3 (Finish)

The Show Command List below are mostly used in my daily job.You can see it at Previledge mode.

  • show interfaces – Displays all the statistics for all the interfaces on the router. To view the statistics for a specific interface, enter the show interfaces command followed by the specific interface and port number.
  • show controllers serial – Displays information-specific to the interface hardware
  • show clock – Shows the time set in the router
  • show hosts – Displays a cached list of host names and addresses
  • show users – Displays all users who are connected to the router
  • show history – Displays a history of commands that have been entered
  • show flash – Displays information about flash memory and what IOS files are stored there
  • show version – Displays information about the router and the IOS that is running in RAM
  • show ARP – Displays the ARP table of the router
  • show protocol – Displays the global and interface specific status of any configured Layer 3 protocols
  • show startup-configuration – Displays the saved configuration located in NVRAM
  • show running-configuration – Displays the configuration currently running in RAM

This is the end of Configuring basic router.Please give comment and to my blog. I'm very apreciate it :)

Source :
www.cisco.com

Selasa, 16 Juni 2009

6 Steps Configuring MRTG

MRTG is the most popular Network Monitoring Tools. Simple Traffic Graph to monitoring Network throughput, CPU used,memory used, etc.

Before you configure MRTG, you have to prepare these kind of tools :
GCC
The GNU C compiler
Perl
Most of MRTG scripts using Perl language. Check your Linux by type perl-v.
gd
It's a basic graph drawing library, it can create .PNG image
libpng
To produce PNG file you need to install this tool.
zlib
It's needed to compress your PNG files.
MRTG
Of course you need this one :) last version is MRTG 2.16.2 version


I try this step using Centos Linux. Assume all above tools are installed on your linux.Example i want to make on Jakarta site, ip address is 192.168.4.2

Step 1
Make new directory
mkdir -p /var/www/html/jakarta/

Step 2
Creating .cfg file contain mrtg configuration. I use public snmp community
cfgmaker --global 'workDir: /var/www/html/jakarta' --global "Options[_]: growright ,bits" --ifref=descr --output /etc/mrtg/jakarta.cfg public@192.168.4.2

Step 3
Make indexmaker which display the status of an array mrtg interface status pages.
indexmaker --output=/var/www/html/jakarta/index.html /etc/mrtg/jakarta.cfg

Step 4
Copy your PNG files
cp -av /var/www/mrtg/*.png /var/www/html/jakarta/

Step 5
Run your MRTG
env LANG=C /usr/bin/mrtg /etc/mrtg/jakarta.cfg

Step 6
Make crontab.
You can edit your cronjob using crontab -e, and add this one.
*/5 * * * * /usr/bin/mrtg /etc/mrtg/jakarta.cfg - logging /var/log/mrtg.log


FINISH !
you can watch you graphic now.