Skip to main content

EIGRP – Redistribution – RIP

 

EIGRP – Redistribution – RIP



Buat ip yang akan diadvertise ke RIP yang kemudian di redistribute ke EIGRP 

R1 

R1(config)#int loopback 0 

R1(config-if)#ip address 1.1.1.1 255.255.255.255 

R1(config)#int loopback 1 

R1(config-if)#ip add 100.100.100.100 255.255.255.255 

Advertise ke RIP 

R1 

R1(config)#router rip 

R1(config-router)#version 2 

R1(config-router)#network 100.100.100.100 

R1(config-router)#network 1.1.1.1 

R1(config-router)#no auto-summary 

R1(config-router)#exit 

Redistribute ke dalam EIGRP 

R1 

R1(config)#router eigrp 10 

R1(config-router)#redistribute rip 

Cek di R3 

R3 

R3#show ip route eigrp 

 12.0.0.0/24 is subnetted, 1 subnets 

D 12.12.12.0 [90/28416] via 23.23.23.2, 00:31:40, FastEthernet0/0  

Setelah kita coba, network 100.100.100.100 dan 1.1.1.1 tidak kelihatan. Kenapa ? karena metricnya belum diset. Abaikan nilai diatas, gunakan nilai berikut. 

R1 

R1(config)#router eigrp 10 

R1(config-router)#redistribute rip metric 1 1 1 1 1 

Secara metric berbeda namun secara fungsi dan jalannya routing tidak akan ada bedanya karena sifatnya eksternal route. Yang penting metricnya harus diisi,

R1 #router eigrp 10 

redistribute rip metric ? <1-4294967295> Bandwidth metric in Kbits per second 

redistribute rip metric 1000000 ? 

 <0-4294967295> EIGRP delay metric, in 10 microsecond units

 redistribute rip metric 1000000 10 ? 

 <0-255> EIGRP reliability metric where 255 is 100% reliable 

redistribute rip metric 1000000 10 255 ?

 <1-255> EIGRP Effective bandwidth metric (Loading) where 255 is 100% loaded 

redistribute rip metric 1000000 10 255 1 ?

 <1-65535> EIGRP MTU of the path 

redistribute rip metric 1000000 10 255 1 1500 

Cek di R3 DENGAN DO SH IP ROUTE EIGRP

R3 

R3#sh ip route eigrp

 1.0.0.0/32 is subnetted, 1 subnets 

D EX 1.1.1.1 [170/2560005376] via 23.23.23.2, 00:06:47, FastEthernet0/0 

 2.0.0.0/32 is subnetted, 1 subnets 

D 2.2.2.2 [90/156160] via 23.23.23.2, 01:22:00, FastEthernet0/0 

12.0.0.0/24 is subnetted, 1 subnets 

D 12.12.12.0 [90/30720] via 23.23.23.2, 01:22:00, FastEthernet0/0 

 100.0.0.0/32 is subnetted, 1 subnets 

D EX 100.100.100.100 [170/2560005376] via 23.23.23.2, 00:06:47, FastEthernet0/0 

R3 

R3#ping 100.100.100.100 

Type escape sequence to abort. 

Sending 5, 100-byte ICMP Echos to 100.100.100.100, timeout is 2 seconds:

 !!!!! 

Success rate is 100 percent (5/5), round-trip min/avg/max = 8/41/64 ms 

R3#ping 1.1.1.1 

Type escape sequence to abort. 

Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds: 

!!!!!

 Success rate is 100 percent (5/5), round-trip min/avg/max = 16/32/76 ms

SELESAI 

Comments

Popular posts from this blog

Konfigurasi Event OSPF Adjacency (Email)

  Konfigurasi Event OSPF Adjacency (Email) LAB INI LANJUTAN SAMA SEPERTI LAB SEBELUM SEBELUMNYA Selain event syslog tadi kita juga bisa memanfaatkan EEM ini untuk mengirimkan informasi ke email kita, misalnya OSPF kita down maka, router kita otomatis akan mengirimkan debug ospf ke email kita. Untuk topology masih sama. KONFIG R1 R1(config)#event manager applet OSPF_DOWN R1(config-applet)#event syslog pattern "Nbr 2.2.2.2 on FastEthernet0/0 from FULL to DOWN" R1(config-applet)#action 1.0 cli command "enable" R1(config-applet)#action 2.0 cli command "debug ip ospf adj" R1(config-applet)#action 3.0 mail server "smtp.gmail.com" to "uuqeili@gmail.com" from "R1@idn.id" subject "OSPF IS DOWN" body "Please fix OSPF" R1(config-applet)#exit Untuk Pengecekkan, kita bisa coba debug aja,  dan hapus EEM interface down,  Dan kita bisa lihat di email kita apa hasilnyaa... selesai

Remote SPAN ( RSPAN )

  Remote SPAN  ( RSPAN ) Assalamualaikum temen - temen... kembali lagi di blogg saya, dan terimakasih telah berkunjung ke blogg saya, di blogg kali ini saya akan memberikan materi lab mengenai Remote Span  ( RSPAN ). Karena ini adalah blog lanjutan, jadi saya akan mengkonfigurasi yang hanya ada pada blog ini saja, bagi temen - temen ingin melihat konfigurasi sebelumnya ataupun blog sebelumnya mengenai BELAJAR CCNP, bisa cek link dibawah ini : https://bit.ly/37DxJrX TOPOLOGI =  SW-1 SW-1(config)#vlan 100 SW-1(config-vlan)#name RSPAN SW-1(config-vlan)#exit SW-1(config)# SW-1(config)#int e0/1 SW-1(config-if)#sw trunk encap dot1q SW-1(config-if)#sw mode tru SW-1(config-if)#exit SW-1(config)# SW-1(config)#monitor session 1 source vlan 10 SW-1(config)#monitor session 1 destination remote vlan 100 SW-2 SW-2(config)#vlan 10 SW-2(config-vlan)#name PC SW-2(config-vlan)#int e0/1 SW-2(config-if)#sw mod acc SW-2(config-if)#sw acc vlan 10 SW-2(config-if)#exit SW-2(config)# SW-2(co...

Konfigurasi Event CLI

Konfigurasi Event CLI =LAB INI LANJUTAN DARI LAB SEBELUMNYA TOPOLOGI 1 R1(config)#event manager applet SHOW_INTERFACE_UP R1(config-applet)#event cli pattern "show ip interface brief" sync yes R1(config-applet)#action 1.0 cli command "enable" R1(config-applet)#action 2.0 cli command "show ip interface brief | include up" R1(config-applet)#action 3.0 puts "$_cli_result" R1(config-applet)#action 4.0 set $_exit_status "0" SETELAH ITU BISA KALIAN CEK DENGAN DO SH IP INT BR