Wednesday, April 19, 2017

Install Fping dan Menggunakan Fping di CentOS 6

Fping adalah sebuah program seperti ping yang didevelop untuk mengirimkan ICMP protocol ke target host, perbedaan utama dengan ping biasa ialah fping dapat mengirimkan ICMP protocol ke list target IP Address secara bersamaan dalam satu intruksi/command.

Contoh :






Notes
  • Beberapa aplikasi membutuhkan fping untuk dapat menjalankan sebuah function mereka, kenapa saya buat catatan ini karna salah satunya NMS Zabbix membutuhkan Fping untuk menjalankan simple check method ping mereka.
  • Sebelum installasi dan mengikuti tutorial ini, pastikan koneksi internet Anda normal karna package fping yang saya ambil ada di internet. (Langkah nomor 1 wget ....)


Langkah-langkah instalasi Fping ialah sebagai berikut ini.

1. Download Fping package.
[root@localhost ~]# wget http://fping.org/dist/fping-3.10.tar.gz

2. Install Fping dengan Command dibawah ini.
[root@localhost ~]# tar -xvf fping-3.10.tar.gz
[root@localhost ~]# cd fping-3.10
[root@localhost ~]# ./configure
[root@localhost ~]# make
[root@localhost ~]# make install

3. Apabila Anda Ingin Fping Support IPv6 Compile dengan Command dibawah ini.
[root@localhost ~]# ./configure --prefix=/usr/local --enable-ipv4 --enable-ipv6
[root@localhost ~]# make
[root@localhost ~]# make install

4. Contoh Penggunaan Fping (Multiple IP Address)
[root@localhost ~]# fping 8.8.8.8 8.8.4.4
8.8.8.8 is alive
8.8.4.4 is alive

5. Contoh Penggunaan Fping (Range IP Address)
[root@localhost ~]# fping -s -g 192.168.1.111 192.168.1.116
192.168.1.111 is alive
192.168.1.112 is alive
192.168.1.114 is alive
192.168.1.115 is alive
ICMP Host Unreachable from 192.168.1.102 for ICMP Echo sent to 192.168.1.113
ICMP Host Unreachable from 192.168.1.102 for ICMP Echo sent to 192.168.1.113
ICMP Host Unreachable from 192.168.1.102 for ICMP Echo sent to 192.168.1.113
ICMP Host Unreachable from 192.168.1.102 for ICMP Echo sent to 192.168.1.116
ICMP Host Unreachable from 192.168.1.102 for ICMP Echo sent to 192.168.1.116
ICMP Host Unreachable from 192.168.1.102 for ICMP Echo sent to 192.168.1.116
192.168.1.113 is unreachable
192.168.1.116 is unreachable

       6 targets
       4 alive
       2 unreachable
       0 unknown addresses

       2 timeouts (waiting for response)
      12 ICMP Echos sent
       4 ICMP Echo Replies received
       6 other ICMP received

 32.9 ms (min round trip time)
 42.2 ms (avg round trip time)
 55.7 ms (max round trip time)
 4.273 sec (elapsed real time)

Done...

No comments:

Post a Comment