EIGRP - Redistrbution - RIP

hapus dulu konfigurasi default route di R1

R1(config)#int s2/0
R1(config-if)#no ip summary-address eigrp 1 0.0.0.0 0.0.0.0

Advertise IP Loopback 1 -5 yaitu network 10.10.10.0 ke RIP

R1(config)#router rip
R1(config-router)#version 2
R1(config-router)#no auto-summary
R1(config-router)#network 10.10.10.0
 
Redistribute RIP ke EIGRP

R1(config)#router eigrp 1
R1(config-router)#redist
R1(config-router)#redistribute rip ?       
  metric     Metric for redistributed routes
  route-map  Route map reference
  <cr>

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


Pada dasarnya untuk redistribute protocol routing lain ke EIGRP di perlukan
nilai metric, yang terdiri dari bandwith, delay, reliability, effective
bandwith dan MTU, kelima metric ini harus di masukan ke EIGRP, bagaimna
mengetahui ke lima nilai tersebut ? nah sungguh merepotkan apabila harus nyari
ke lima nilai metric tersebut, oleh karena itu abaikan 5 nilai metricnya,
 dan konfigurasikan seperti : redistrbute rip metric 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, berapapun nilainya tidak ada pengaruh.


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:13:50, 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:34:01, Ethernet0/0
      10.0.0.0/8 is variably subnetted, 7 subnets, 2 masks
D        10.0.0.0/29 [90/409600] via 23.23.23.3, 00:34:01, Ethernet0/0
D EX     10.10.10.1/32 [170/2560512256] via 12.12.12.1, 00:00:18, Serial2/0
D EX     10.10.10.2/32 [170/2560512256] via 12.12.12.1, 00:00:18, Serial2/0
D EX     10.10.10.3/32 [170/2560512256] via 12.12.12.1, 00:00:18, Serial2/0
D EX     10.10.10.4/32 [170/2560512256] via 12.12.12.1, 00:00:18, Serial2/0
D EX     10.10.10.5/32 [170/2560512256] via 12.12.12.1, 00:00:18, Serial2/0
D EX     10.10.10.6/32 [170/2560512256] via 12.12.12.1, 00:00:18, 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


Mantap terlihat di tabel roouting R2 network 10.10.10.0 mendapatkan flag
D EX, artinya EIGRP di R2 tersebut menjalankan EIGRP External

dan ketika di ping ke 10.10.10.1 dari R2

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 = 8/9/10 ms
R2#


Sukses

Salam Ngoprek




Leave a Reply