EIGRP SUMMARIZATION - EIGRP #6 ( CCNP )

 EIGRP #6 : 

EIGRP SUMMARIZATION 

Required :

  • Laptop
  • VMware
  • EVE NG 
    Summarization atau proses menyingkat adalah Metode yang digunakan untuk membuat IP kita pada Routing Table kita menjadi lebih sederhana, lebih enak dilihat, dan bisa menghemat usage 

Berikut cara EIGRP Summarization

Nyalakan VMWarenya dan Masuk ke Eve NG lalu Buatlah Topologi seperti ini :


Pertama Tambahkan Trunk pada switch dan Tambahkan IP Sesuai topologi serta tambahkan Routing kalian seperti ini : 

Tambahkan Trunk pada Switch : 

Switch : 

Switch(config-if)#switchport trunk encapsulation dot1q
Switch(config-if)#switchport mode trunk

Tambahkan IP pada Komputer yang ada di Topologi memakai Sub-if,IP Interface, dan IP loopback :  
  
R1 : 

Router(config-subif)#int e0/1
Router(config-if)#ip address 12.12.12.1 255.255.255.0
Router(config-if)#no sh

Router(config-if)#int e0/0.10
Router(config-subif)#encapsulation dot1Q 10
Router(config-subif)#ip address 192.168.10.33 255.255.255.248
Router(config)#int e0/0.20
Router(config-subif)#encapsulation dot1Q 20
Router(config-subif)#ip address 192.168.20.17 255.255.255.240
Router(config-subif)#int e0/0.30
Router(config-subif)#encapsulation dot1Q 30
Router(config-subif)#ip address 192.168.30.100 255.255.255.224

R2 : 

Router#config ter
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int e0/0
Router(config-if)#ip address 12.12.12.2 255.255.255.0
Router(config-if)#no sh
Router(config-if)#int e0/1
Router(config-if)#ip address 23.23.23.2 255.255.255.0
Router(config-if)#no sh
Router(config-if)#int lo1
Router(config-if)#ip address 2.2.2.2 255.255.255.255

R3 : 

Router(config)#int lo1
Router(config-if)#ip address 3.3.3.3 255.255.255.255
Router(config-if)#int e0/0
Router(config-if)#ip address 23.23.23.3 255.255.255.0
Router(config-if)#no sh

Jika sudah itu semua, Konfigurasikan EIGRP dan untuk R1 tambahkan Routingan IP su-bif yang ditambahkan tadi  : 

Note : Cara menentukan willcardnya dengan Rumus Subnetting 

R1 : 

Router(config)#router eigrp 10= Masuk ke Routing EIGRP 
Router(config-router)#network 192.168.10.32 0.0.0.7= tambahkan Semua network IP yang ada, sesuai dengan topologi  
Router(config-router)#network 192.168.20.16 0.0.0.15
Router(config-router)#network 192.168.30.96 0.0.0.31
Router(config-router)#network 1.1.1.1 0.0.0.0
Router(config-router)#network 12.12.12.0 0.0.0.255
Router(config-router)#no aut

R2 :

Router(config)#router eigrp 10
Router(config-router)#network 12.12.12.0 0.0.0.255
Router(config-router)#network 23.23.23.0 0.0.0.255
Router(config-router)#network 2.2.2.2 0.0.0.0
Router(config-router)#no aut

R3 : 

Router(config)#router eigrp 10
Router(config-router)#network 3.3.3.3 0.0.0.0
Router(config-router)#network 23.23.23.0 0.0.0.255

Setelah semua itu selesai, saatnya mengonfig EIGRP Summarization  

Kita akan Menyingkat semua IP yang di tambahkan oleh R1 ke R2 dan R3

R1 : 

Router(config-if)#int e0/1= masuk ke interface menuju R2 
Router(config-if)#ip summary-address eigrp 10 192.168.0.0 255.255.0.0= tambahkan Rule Summary dengan "ip summary-address ( Nomor Eigrp ) ( Segment IP yang ingin di sum ) ( Memakai Prefix 16 )"

Jika sudah itu semua, Cek R2 atau R3 maka akan terlihat seperti ini : 

Codes: L - local, 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, H - NHRP, l - LISP
       a - application route
       + - replicated route, % - next hop override

Gateway of last resort is not set

      2.0.0.0/32 is subnetted, 1 subnets
C        2.2.2.2 is directly connected, Loopback1
      3.0.0.0/32 is subnetted, 1 subnets
D        3.3.3.3 [90/409600] via 23.23.23.3, 00:16:14, Ethernet0/1
      12.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        12.12.12.0/24 is directly connected, Ethernet0/0
L        12.12.12.2/32 is directly connected, Ethernet0/0
      23.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        23.23.23.0/24 is directly connected, Ethernet0/1
L        23.23.23.2/32 is directly connected, Ethernet0/1
D     192.168.0.0/16 [90/307200] via 12.12.12.1, 00:00:27, Ethernet0/0 = IP nya akan tersingkat

Komentar

Postingan populer dari blog ini

IPv6 ROUTING DYNAMIC ( RIPnG,OSPFv3 & EIGRP ) - IPv6 #3 ( CCNP )

BGP BASIC CONFIGURATION - BGP #2 ( CCNP )

OTP - EIGRP #17 ( CCNP )