EIGRP – Redistribution – RIP
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
Post a Comment