EIGRP - Redistribution - OSPF

Hapus dulu konfigurasi Redistribution RIP di R1

R1(config)#router eigrp 1
R1(config-router)#no redistribute rip metric 1 1 1 1 1
R1(config-router)#exit
R1(config)#no router rip


Advertise IP Loopback 10.10.10.1 ke OSPF dengan area 0 di R1

R1(config)#router ospf 1
R1(config-router)#router-id 1.1.1.1
R1(config-router)#network 10.10.10.1 0.0.0.0 area 0
R1(config-router)#exit

Redistribute OSPF ke EIGRP masukin proses id ospf juga

R1(config)#router eigrp 1
R1(config-router)#redistribute ospf 1 metric 1 1 1 1 1

verifikasi di R2

R2#sh ip route
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/2297856] via 12.12.12.1, 00:31:58, Serial2/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:52:09, Ethernet0/0
      10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
D        10.0.0.0/29 [90/409600] via 23.23.23.3, 00:52:09, Ethernet0/0
D EX     10.10.10.1/32 [170/2560512256] via 12.12.12.1, 00:00:12, Serial2/0
      12.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        12.12.12.0/24 is directly connected, Serial2/0
L        12.12.12.2/32 is directly connected, Serial2/0
      23.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        23.23.23.0/24 is directly connected, Ethernet0/0
L        23.23.23.2/32 is directly connected, Ethernet0/0


Terlihat network 10.10.10.1/32 mendapatkan flag D EX artinya EIGRP di R1
menjalankan EIGRP Eksternal yaitu OSPF

dan ketika di ping dari R2 ke ip loopback 10.10.10.1

R2#ping 10.10.10.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.10.10.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 9/10/12 ms


Mantap sukses

Salam Ngoprek

Leave a Reply