Recent twitter entries...


»»

English French German Spain Italian Russian Portuguese Japanese Korean Chinese Simplified






-

CISCO - EIGRP (Enhanced Interior Gateway Routing Protocol)

EIGRP (Enhanced Interior Gateway Routing Protocol) adalah routing protocol yang hanya di adopsi oleh router cisco atau sering disebut sebagai proprietary protocol pada cisco. Dimana EIGRP ini hanya bisa digunakan sesama router cisco saja. EIGRP ini sangat cocok digunakan utk midsize dan large company. Karena banyak sekali fasilitas2 yang diberikan pada protocol ini.

Hal-hal dasar yang perlu diketahui
EIGRP sering disebut juga hybrid-distance-vector routing protocol, karena EIGRP ini terdapat dua tipe routing protocol yang digunakan, yaitu:
- distance vector, dan
- link state.
Utk tipe2 routing protocol akan saya tambahkan sehabis penjelasan tentang EIGRP.
EIGRP ini pengembangan dari routing protocol IGRP (distance vector), prorpietary cisco juga. Perbandingan (bukan perbedaan) antar IGRP dan EIGRP di bagi menjadi beberapa kategori:
1. Compability mode
2. Metric colocation
3. Hop count
4. Automatic protocol redistribution
5. Route tagging

EIGRP mempunyai 3 table dalam menyimpan informasi networknya:
1. Neighbor table
2. Topology table
3. Routing table

Penjelasan :
  1. Neighbor table : Tabel yang paling penting dari tabel2 yang lainnya. di tabel ini menyimpan list tentang router2 tetangganya. Setiap ada router baru yg dipasang,address dan interface lgsg dicatat di tabel ini.
  2. Topology table : Tabel ini dibuat untuk memenuhi kebutuhan dari Routing table dalam 1 autonomous system (kya sistem area di OSPF). DUAL mengambil informasi dari “neighbor tabel” dan “topology table” untuk melakukan kalkulasi “lowest cost routes to each destination”. Setelah melakukan kalkulasi akan ada yang namanya “successor route”. Successor route ini disimpan di tabel ini juga lho.
  3. Routing table : menyimpan the best routes to a destination. Informasi tersebut diambil dari “topology table”.
Berikut contoh topology menggunakan EIGRP :





 Berikut Konfigurasi nya :
 ____________________
 Router Jakarta 

Jakarta#sh run
Building configuration...

Current configuration : 1332 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
!
hostname Jakarta
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$VYK6$iyxqONTJK9xCHlbUg9wkv1
!
no aaa new-model
!
resource policy
!
memory-size iomem 5
ip subnet-zero
!
!
ip cef
no ip domain lookup
ip domain name lab.local
no ip dhcp use vrf connected
!
!
no ip ips deny-action ips-interface
!
no ftp-server write-enable
!
no crypto isakmp ccm
!
interface Loopback0
 ip address 17.8.8.45 255.255.255.255
!
interface FastEthernet0/0
 description Link to Backbone
 ip address 10.8.8.119 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet1/0
 description Link to Bandung
 ip address 17.1.1.1 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet2/0
 description Link to Surabaya
 ip address 17.2.2.1 255.255.255.0
 duplex auto
 speed auto
!
router eigrp 10
 passive-interface FastEthernet0/0
 network 17.0.0.0
 no auto-summary
!
no ip http server
no ip http secure-server
ip classless
!
control-plane
!
line con 0
 exec-timeout 0 0
 privilege level 15
 logging synchronous
line aux 0
 exec-timeout 0 0
 privilege level 15
 logging synchronous
line vty 0
 password 7 10470415514147
 login
line vty 1 4
 login
!
!
end


 ____________________
 Router Bandung 

Bandung#sh run
Building configuration...

Current configuration : 1192 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
!
hostname Bandung
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$/aXy$OqmafhsePvqVHQYCb4Hpo1
!
no aaa new-model
!
resource policy
!
memory-size iomem 5
ip subnet-zero
!
!
ip cef
no ip domain lookup
ip domain name lab.local
no ip dhcp use vrf connected
!
!
no ip ips deny-action ips-interface
!
no ftp-server write-enable
!
!
no crypto isakmp ccm
!
interface Loopback0
 ip address 17.8.8.46 255.255.255.255
!
interface FastEthernet0/0
 description Link to Jakarta
 ip address 17.1.1.2 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet1/0
 description Link to Surabaya
 ip address 17.3.3.2 255.255.255.0
 duplex auto
 speed auto
!
router eigrp 10
 network 10.0.0.0
 network 17.0.0.0
 auto-summary
!
no ip http server
no ip http secure-server
ip classless
!
control-plane
!
!
line con 0
 exec-timeout 0 0
 privilege level 15
 logging synchronous
line aux 0
 exec-timeout 0 0
 privilege level 15
 logging synchronous
line vty 0
 password 7 030D5607525974
 login
line vty 1 4
 login
!
!
end

 ____________________
 Router Surabaya 

Surabaya#sh run
Building configuration...

Current configuration : 1177 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
!
hostname Surabaya
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$QY2v$GY1vmmW.MEpgQQuViTJM8/
!
no aaa new-model
!
resource policy
!
memory-size iomem 5
ip subnet-zero
!
!
ip cef
no ip domain lookup
ip domain name lab.local
no ip dhcp use vrf connected
!
!
no ip ips deny-action ips-interface
!
no ftp-server write-enable
!
!
no crypto isakmp ccm
!
interface Loopback0
 ip address 17.8.8.47 255.255.255.255
!
interface FastEthernet0/0
 description Link to Jakarta
 ip address 17.2.2.2 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet1/0
 description Link to Bandung
 ip address 17.3.3.1 255.255.255.0
 duplex auto
 speed auto
!
router eigrp 10
 network 17.0.0.0
 no auto-summary
!
no ip http server
no ip http secure-server
ip classless
!
control-plane
!
!
line con 0
 exec-timeout 0 0
 privilege level 15
 logging synchronous
line aux 0
 exec-timeout 0 0
 privilege level 15
 logging synchronous
line vty 0
 password 7 1210081B465D59
 login
line vty 1 4
 login
!
!
end



 Verifikasi Koneksi :

 ____________________
 Router Jakarta 

Jakarta#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     17.0.0.0/8 is variably subnetted, 6 subnets, 2 masks
D       17.3.3.0/24 [90/30720] via 17.2.2.2, 00:12:07, FastEthernet2/0
                    [90/30720] via 17.1.1.2, 00:12:07, FastEthernet1/0
C       17.2.2.0/24 is directly connected, FastEthernet2/0
C       17.1.1.0/24 is directly connected, FastEthernet1/0
C       17.8.8.45/32 is directly connected, Loopback0
D       17.8.8.47/32 [90/156160] via 17.2.2.2, 00:11:27, FastEthernet2/0
D       17.8.8.46/32 [90/156160] via 17.1.1.2, 00:11:27, FastEthernet1/0
     10.0.0.0/24 is subnetted, 1 subnets
C       10.8.8.0 is directly connected, FastEthernet0/0
Jakarta#sh ip proto
Jakarta#sh ip protocols
Routing Protocol is "eigrp 10"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
  EIGRP maximum hopcount 100
  EIGRP maximum metric variance 1
  Redistributing: eigrp 10
  EIGRP NSF-aware route hold timer is 240s
  Automatic network summarization is not in effect
  Maximum path: 4
  Routing for Networks:
    10.8.8.0/24
    17.0.0.0
  Passive Interface(s):
    FastEthernet0/0
  Routing Information Sources:
    Gateway         Distance      Last Update
    17.2.2.2              90      00:02:44
    17.1.1.2              90      00:02:44
  Distance: internal 90 external 170

Jakarta#sh ip eigrp neig
Jakarta#sh ip eigrp neighbors
IP-EIGRP neighbors for process 10
H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq
                                            (sec)         (ms)       Cnt Num
0   17.1.1.2                Fa1/0             14 00:12:31  428  3852  0  40
1   17.2.2.2                Fa2/0             14 00:19:03 1393  5000  0  30
Jakarta#sh ip eigrp topol
Jakarta#sh ip eigrp topology
IP-EIGRP Topology Table for AS(10)/ID(17.8.8.45)

Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
       r - reply Status, s - sia Status

P 10.8.8.0/24, 1 successors, FD is 28160
        via Connected, FastEthernet0/0
P 17.3.3.0/24, 2 successors, FD is 30720
        via 17.1.1.2 (30720/28160), FastEthernet1/0
        via 17.2.2.2 (30720/28160), FastEthernet2/0
P 17.2.2.0/24, 1 successors, FD is 28160
        via Connected, FastEthernet2/0
P 17.1.1.0/24, 1 successors, FD is 28160
        via Connected, FastEthernet1/0
P 17.8.8.45/32, 1 successors, FD is 128256
        via Connected, Loopback0
P 17.8.8.47/32, 1 successors, FD is 156160
        via 17.2.2.2 (156160/128256), FastEthernet2/0
P 17.8.8.46/32, 1 successors, FD is 156160
        via 17.1.1.2 (156160/128256), FastEthernet1/0
Jakarta#
Jakarta#sh ip eigrp inter
Jakarta#sh ip eigrp interfaces
IP-EIGRP interfaces for process 10

                        Xmit Queue   Mean   Pacing Time   Multicast    Pending
Interface        Peers  Un/Reliable  SRTT   Un/Reliable   Flow Timer   Routes
Fa1/0              1        0/0       428       0/10        1712           0
Fa2/0              1        0/0      1393       0/10        3068           0
Lo0                0        0/0         0       0/10           0           0

 ____________________
 Router Bandung 

Bandung#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     17.0.0.0/8 is variably subnetted, 6 subnets, 2 masks
C       17.3.3.0/24 is directly connected, FastEthernet1/0
D       17.2.2.0/24 [90/30720] via 17.3.3.1, 00:20:21, FastEthernet1/0
                    [90/30720] via 17.1.1.1, 00:20:21, FastEthernet0/0
C       17.1.1.0/24 is directly connected, FastEthernet0/0
D       17.8.8.45/32 [90/156160] via 17.1.1.1, 00:20:21, FastEthernet0/0
D       17.8.8.47/32 [90/156160] via 17.3.3.1, 00:19:31, FastEthernet1/0
C       17.8.8.46/32 is directly connected, Loopback0
     10.0.0.0/24 is subnetted, 1 subnets
D       10.8.8.0 [90/30720] via 17.1.1.1, 00:08:47, FastEthernet0/0
Bandung#sh ip eigrp neig
IP-EIGRP neighbors for process 10
H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq
                                            (sec)         (ms)       Cnt Num
0   17.1.1.1                Fa0/0             12 00:20:33  320  1920  0  40
1   17.3.3.1                Fa1/0             14 00:27:17  445  2670  0  31
Bandung#sh ip eigrp inter
Bandung#sh ip eigrp interfaces
IP-EIGRP interfaces for process 10

                        Xmit Queue   Mean   Pacing Time   Multicast    Pending
Interface        Peers  Un/Reliable  SRTT   Un/Reliable   Flow Timer   Routes
Fa0/0              1        0/0       320       0/10        1084           0
Fa1/0              1        0/0       445       0/10        1704           0
Lo0                0        0/0         0       0/10           0           0
Bandung#sh ip eigrp topo
Bandung#sh ip eigrp topology
IP-EIGRP Topology Table for AS(10)/ID(17.8.8.47)

Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
       r - reply Status, s - sia Status

P 10.8.8.0/24, 1 successors, FD is 30720
        via 17.1.1.1 (30720/28160), FastEthernet0/0
P 17.2.2.0/24, 2 successors, FD is 30720
        via 17.1.1.1 (30720/28160), FastEthernet0/0
        via 17.3.3.1 (30720/28160), FastEthernet1/0
P 17.3.3.0/24, 1 successors, FD is 28160
        via Connected, FastEthernet1/0
P 17.1.1.0/24, 1 successors, FD is 28160
        via Connected, FastEthernet0/0
P 17.8.8.45/32, 1 successors, FD is 156160
        via 17.1.1.1 (156160/128256), FastEthernet0/0
P 17.8.8.47/32, 1 successors, FD is 156160
        via 17.3.3.1 (156160/128256), FastEthernet1/0
P 17.8.8.46/32, 1 successors, FD is 128256
        via Connected, Loopback0
Bandung#sh ip protoco
Bandung#sh ip protocols
Routing Protocol is "eigrp 10"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
  EIGRP maximum hopcount 100
  EIGRP maximum metric variance 1
  Redistributing: eigrp 10
  EIGRP NSF-aware route hold timer is 240s
  Automatic network summarization is in effect
  Maximum path: 4
  Routing for Networks:
    10.0.0.0
    17.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    17.3.3.1              90      00:09:35
    17.1.1.1              90      00:09:35
  Distance: internal 90 external 170

 ____________________
 Router Surabaya 

Surabaya#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     17.0.0.0/8 is variably subnetted, 6 subnets, 2 masks
C       17.3.3.0/24 is directly connected, FastEthernet1/0
C       17.2.2.0/24 is directly connected, FastEthernet0/0
D       17.1.1.0/24 [90/30720] via 17.3.3.2, 00:31:42, FastEthernet1/0
                    [90/30720] via 17.2.2.1, 00:31:42, FastEthernet0/0
D       17.8.8.45/32 [90/156160] via 17.2.2.1, 00:25:00, FastEthernet0/0
C       17.8.8.47/32 is directly connected, Loopback0
D       17.8.8.46/32 [90/156160] via 17.3.3.2, 00:24:15, FastEthernet1/0
     10.0.0.0/24 is subnetted, 1 subnets
D       10.8.8.0 [90/30720] via 17.2.2.1, 00:13:31, FastEthernet0/0
Surabaya#
Surabaya#
Surabaya#sh ip eigrp
Surabaya#sh ip eigrp neig
Surabaya#sh ip eigrp neighbors
IP-EIGRP neighbors for process 10
H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq
                                            (sec)         (ms)       Cnt Num
1   17.3.3.2                Fa1/0             13 00:31:55  743  4458  0  41
0   17.2.2.1                Fa0/0             10 00:31:56  687  4122  0  41
Surabaya#sh ip eigrp topolo
Surabaya#sh ip eigrp topology
IP-EIGRP Topology Table for AS(10)/ID(17.8.8.46)

Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
       r - reply Status, s - sia Status

P 10.8.8.0/24, 1 successors, FD is 30720
        via 17.2.2.1 (30720/28160), FastEthernet0/0
P 17.1.1.0/24, 2 successors, FD is 30720
        via 17.2.2.1 (30720/28160), FastEthernet0/0
        via 17.3.3.2 (30720/28160), FastEthernet1/0
P 17.3.3.0/24, 1 successors, FD is 28160
        via Connected, FastEthernet1/0
P 17.2.2.0/24, 1 successors, FD is 28160
        via Connected, FastEthernet0/0
P 17.8.8.45/32, 1 successors, FD is 156160
        via 17.2.2.1 (156160/128256), FastEthernet0/0
P 17.8.8.47/32, 1 successors, FD is 128256
        via Connected, Loopback0
P 17.8.8.46/32, 1 successors, FD is 156160
        via 17.3.3.2 (156160/128256), FastEthernet1/0
Surabaya#sh ip eigrp
Surabaya#sh ip eigrp inter
Surabaya#sh ip eigrp interfaces
IP-EIGRP interfaces for process 10

                        Xmit Queue   Mean   Pacing Time   Multicast    Pending
Interface        Peers  Un/Reliable  SRTT   Un/Reliable   Flow Timer   Routes
Fa0/0              1        0/0       565       0/10        2704           0
Fa1/0              1        0/0       634       0/10        2980           0
Lo0                0        0/0         0       0/10           0           0

Sekian, semoga bermanfaat :)

Comments (0)

Post a Comment

ADVERTISE SPACE AVAILABLE HERE
justikmal@gmail.com | www.justikmal.tk