Pada EIGRP kita dapat melakukan Summarization terhadap Alamat IP network-network yang ingin didistribusikan. Apa itu Summarization? dalam bahasa Indonesia artinya meringkas, jadi EIGRP Summarization ini adalah fitur untuk meringkas beberapa Alamat IP Network-network yang banyak menjadi satu saja yang dapat mewakili semuanya. Tujuan dari Summarization ini adalah untuk memperkecil jumlah entri dalam Routing table dengan cara meringkasnya.
Cara meringkas beberapa IP Network menjadi satu adalah dengan mencari Subnet Mask atau prefix yang dapat menjangkau semua IP Network yang ingin diringkas. Contoh sederhananya adalah sebagai berikut :
- 10.10.10.1/32
- 10.10.10.2/32
- 10.10.10.3/32
- 10.10.10.4/32
- 10.10.10.5/32
- 10.10.10.6/32
- 10.10.10.7/32
Oktet dari satu hingga ke tiga sama, sedangkan yang ke empat berbeda, maka sudah dipastikan IP Network ringkasannya adalah 10.10.10.x/xx . Setelah itu kita harus menentukan Subnet Mask yang dapat menjangkau dari 1 sampai 7, kita tinggal ingat ingat subnet mask atau prefix yang dapat memiliki host hingga 8 adalah :
255.255.255.248 dengan prefix /29
Maka IP network yang diringkas adalah 10.10.10.0/29 dapat menjangkau dari 1 hingga 7. Contoh lain adalah sebagai berikut :
- 172.16.1.0/24
- 172.16.2.0/24
- 172.16.3.0/24
- 172.16.4.0/24
Alamat IP Network tersebut dapat diringkas menjadi 172.16.0.0/21
Setelah mengetahui secara singkat cara melakukan summarize pada IP Network sekarang kita lanjut pada sintaks konfigurasi pada Router Cisco untuk melakukan EIGRP Manual Summarization.
Barulah masukan IP Network yang telah diringkas tadi
Pada Router R1 dan R3 kita akan membuat beberapa Interface loopback, dan Network pada Interface loopback tersebut akan didistribusikan menggunakan EIGRP tetapi kita ringkas terlebih dahulu.
- Masuk pada konfigurasi Interface Router, dimana IP Network yang sudah di ringkas ingin dididstribusikan.
Router(config)#interface [slot/number]
Router(config-if)#ip summary-address eigrp 1 x.x.x.x x.x.x.xSetelah kita mengetahui sintaks konfigurasinya sekarang kita akan coba praktekan pada topologi dibawah ini :
Konfigurasi
Pertama kita lakukan konfigurasi dasar pada Router seperti IP Address tiap interface, dan juga Interface loopbackRouter R1
R1(config)#int e0/0 R1(config-if)#ip add 12.12.12.1 255.255.255.0 R1(config-if)#no sh R1(config-if)#exiDan untuk interface loopback nya.
R1(config)#int lo0 R1(config-if)#ip add 1.1.1.1 255.255.255.255 R1(config-if)#exi R1(config)#int lo1 R1(config-if)#ip add 10.10.10.1 255.255.255.255 R1(config-if)#exi R1(config)#int lo2 R1(config-if)#ip add 10.10.10.2 255.255.255.255 R1(config-if)#exi R1(config)#int lo3 R1(config-if)#ip add 10.10.10.3 255.255.255.255 R1(config-if)#exi R1(config)#int lo4 R1(config-if)#ip add 10.10.10.4 255.255.255.255 R1(config-if)#exi R1(config)#int lo5 R1(config-if)#ip add 10.10.10.5 255.255.255.255 R1(config-if)#exi R1(config)#int lo6 R1(config-if)#ip add 10.10.10.6 255.255.255.255 R1(config-if)#exi R1(config)#int lo7 R1(config-if)#ip add 10.10.10.7 255.255.255.255 R1(config-if)#exi
Router R2
R2(config)#int e0/0 R2(config-if)#ip add 12.12.12.2 255.255.255.0 R2(config-if)#no sh R2(config-if)#exi R2(config)#int e0/1 R2(config-if)#ip add 23.23.23.2 255.255.255.0 R2(config-if)#no sh R2(config-if)#exi R2(config)#int lo0 R2(config-if)#ip add 2.2.2.2 255.255.255.255 R2(config-if)#exi
Router R3
R3(config)#int e0/0 R3(config-if)#ip add 23.23.23.3 255.255.255.0 R3(config-if)#no sh R3(config-if)#exi R3(config)#int lo0 R3(config-if)#ip add 3.3.3.3 255.255.255.255 R3(config-if)#exi R3(config)#int lo1 R3(config-if)#ip add 172.16.1.10 255.255.255.0 R3(config-if)#exi R3(config)#int lo2 R3(config-if)#ip add 172.16.2.20 255.255.255.0 R3(config-if)#exi R3(config)#int lo3 R3(config-if)#ip add 172.16.3.30 255.255.255.0 R3(config-if)#exi R3(config)#int lo4 R3(config-if)#ip add 172.16.4.40 255.255.255.0 R3(config-if)#exiSetelah IP Addressing selesai sekarang kita lanjut pada konfigurasi EIGRP untuk menghubungkan antar Router dengan EIGRP ini, dan mendistribusikan informasi Routing.
Router R1
R1(config)#router eigrp 1 R1(config-router)#no auto-summ R1(config-router)#eigrp router-id 1.1.1.1 R1(config-router)#net 12.12.12.0 0.0.0.255 R1(config-router)#net 10.10.10.0 0.0.0.7 R1(config-router)#net 1.1.1.1 0.0.0.0 R1(config-router)#exi
Router R2
R2(config)#router eigrp 1 R2(config-router)#no auto-sum R2(config-router)#eigrp router-id 2.2.2.2 R2(config-router)#net 12.12.12.0 0.0.0.255 R2(config-router)#net 23.23.23.0 0.0.0.255 R2(config-router)#net 2.2.2.2 0.0.0.0 R2(config-router)#exi
Router R3
R3(config)#router eigrp 1 R3(config-router)#no auto-summ R3(config-router)#eigrp router-id 3.3.3.3 R3(config-router)#net 23.23.23.0 0.0.0.255 R3(config-router)#net 3.3.3.3 0.0.0.0 R3(config-router)#net 172.16.0.0 0.0.7.255 R3(config-router)#exiYang ditebalkan merupakan IP Network interface loopback yang telah diringkas. Setelah selesai konfigurasi sekarang kita cek pada Routing table salah satu Router.
R2#sh ip ro 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 1.0.0.0/32 is subnetted, 1 subnets D 1.1.1.1 [90/409600] via 12.12.12.1, 00:09:47, Ethernet0/0 2.0.0.0/32 is subnetted, 1 subnets C 2.2.2.2 is directly connected, Loopback0 3.0.0.0/32 is subnetted, 1 subnets D 3.3.3.3 [90/409600] via 23.23.23.3, 00:07:39, Ethernet0/1 10.0.0.0/32 is subnetted, 7 subnets D 10.10.10.1 [90/409600] via 12.12.12.1, 00:09:47, Ethernet0/0 D 10.10.10.2 [90/409600] via 12.12.12.1, 00:09:47, Ethernet0/0 D 10.10.10.3 [90/409600] via 12.12.12.1, 00:09:47, Ethernet0/0 D 10.10.10.4 [90/409600] via 12.12.12.1, 00:09:47, Ethernet0/0 D 10.10.10.5 [90/409600] via 12.12.12.1, 00:09:47, Ethernet0/0 D 10.10.10.6 [90/409600] via 12.12.12.1, 00:09:47, Ethernet0/0 D 10.10.10.7 [90/409600] via 12.12.12.1, 00:09:47, Ethernet0/0 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 172.16.0.0/24 is subnetted, 4 subnets D 172.16.1.0 [90/409600] via 23.23.23.3, 00:00:03, Ethernet0/1 D 172.16.2.0 [90/409600] via 23.23.23.3, 00:00:03, Ethernet0/1 D 172.16.3.0 [90/409600] via 23.23.23.3, 00:00:03, Ethernet0/1 D 172.16.4.0 [90/409600] via 23.23.23.3, 00:00:03, Ethernet0/1Kita bisa lihat pada tulisan yang ditebalkan merupakan rute rute yang memakan banyak tempat pada Routing table, ini dikarenakan kita belum melakukan summarization dan kita mematikan auto summary eigrp dengan perintah no auto-summ pada konfigurasi sebelumnya. Untuk itu kita perlu mengkonfigurasi EIGRP summarization pada Router yang mendistribusikan informasi network tersebut :
Router R1
Masuk pada konfigurasi Interface dimana informasi network yang ingin diringkas.R1(config)#int e0/0Kemudian ketikan alamat IP Network yang sudah diringkas.
R1(config-if)#ip summary-address eigrp 1 10.10.10.0 255.255.255.248
Router R3
R3(config)#int e0/0 R3(config-if)#ip summary-addr eigrp 1 172.16.0.0 255.255.248.0 R3(config-if)#exi
Konfirmasi
Setelah konfigurasi dan summarization selesai, kita kembali cek Routing table pada salah satu Router.R2#sh ip ro 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 1.0.0.0/32 is subnetted, 1 subnets D 1.1.1.1 [90/409600] via 12.12.12.1, 00:22:50, Ethernet0/0 2.0.0.0/32 is subnetted, 1 subnets C 2.2.2.2 is directly connected, Loopback0 3.0.0.0/32 is subnetted, 1 subnets D 3.3.3.3 [90/409600] via 23.23.23.3, 00:20:42, Ethernet0/1 10.0.0.0/29 is subnetted, 1 subnets D 10.10.10.0 [90/409600] via 12.12.12.1, 00:01:28, Ethernet0/0 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 172.16.0.0/21 is subnetted, 1 subnets D 172.16.0.0 [90/409600] via 23.23.23.3, 00:00:22, Ethernet0/1Setelah kita konfigurasi summarization atau peringkasan, Routing table dapat kita perkecil ukurannya dan tidak begitu memakan banyak tempat. Sekarang kita coba lakukan PING untuk memastikan kebenarannya :
R2#ping 10.10.10.5 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.10.10.5, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms R2#ping 172.16.3.30 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.3.30, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms
Komentar
Posting Komentar