Kamis, 15 Desember 2011

Day 2 - EIGRP - Redistribute RIP

Lab kali ini kita akan membahas bagaimana cara melakukan redistribution RIP route ke dalam routing EIGRP.

Lab 4 - EIGRP - Redistribute RIP

Topologi yang digunakan sbb :

 

Skenarionya adalah R1 akan melakukan advertise IP Loopback2 kedalam routing RIP, kemudian melakukan redistribution RIP route ke dalam routing EIGRP.


Konfigurasi R1:
interface Loopback0
 ip address 1.1.1.1 255.255.255.255
!
interface Loopback2
 ip address 200.200.200.1 255.255.255.255
!
interface Serial0/0
 ip address 12.12.12.1 255.255.255.0
!
router eigrp 10
 network 1.1.1.1 0.0.0.0
 network 12.12.12.1 0.0.0.0
 no auto-summary


Konfigurasi R2 :
interface Loopback0
 ip address 2.2.2.2 255.255.255.255
!
interface FastEthernet0/0
 ip address 23.23.23.2 255.255.255.0
!
interface Serial0/0
 ip address 12.12.12.2 255.255.255.0
!
router eigrp 10
 network 2.2.2.2 0.0.0.0
 network 12.12.12.2 0.0.0.0
 network 23.23.23.2 0.0.0.0
 no auto-summary


Konfigurasi R3 :
interface Loopback0
 ip address 3.3.3.3 255.255.255.255
!
interface FastEthernet0/0
 ip address 23.23.23.3 255.255.255.0
!
router eigrp 10
 network 3.3.3.3 0.0.0.0
 network 23.23.23.3 0.0.0.0
 no auto-summary


Pertama kita advertise IP Loopback2 di router R1 kedalam routing RIP.

R1(config)#router rip
R1(config-router)#network 200.200.200.0



Kemudian kita redistribute RIP ke dalam EIGRP :

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


Kita cek di R1 untuk memastikan redistribution sudah berjalan :


R1(config)#do sh ip protocol
Routing Protocol is "eigrp 10"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
  EIGRP maximum hopcount 100
  EIGRP maximum metric variance 1
  Redistributing: eigrp 10, rip
  EIGRP NSF-aware route hold timer is 240s
  Automatic network summarization is not in effect
  Maximum path: 4
  Routing for Networks:
    1.1.1.1/32
    12.12.12.1/32
  Routing Information Sources:
    Gateway         Distance      Last Update
    12.12.12.2            90      00:01:38
  Distance: internal 90 external 170



Terlihat bahwa untuk eigrp 10 sudah melakukan proses redistribution dari RIP.


Juga kita cek di R3 untuk mengetahui apakah redistribution dari R1 sudah berjalan dengan baik.


R3#sh ip route
Gateway of last resort is not set

     200.200.200.0/32 is subnetted, 1 subnets
D EX    200.200.200.1           [170/2560537856] via 23.23.23.2, 00:09:04, FastEthernet0/0
     1.0.0.0/32 is subnetted, 1 subnets
D       1.1.1.1 [90/2323456] via 23.23.23.2, 00:09:04, FastEthernet0/0
     2.0.0.0/32 is subnetted, 1 subnets
D       2.2.2.2 [90/409600] via 23.23.23.2, 00:09:04, FastEthernet0/0
     3.0.0.0/32 is subnetted, 1 subnets
C       3.3.3.3 is directly connected, Loopback0
     23.0.0.0/24 is subnetted, 1 subnets
C       23.23.23.0 is directly connected, FastEthernet0/0
     12.0.0.0/24 is subnetted, 1 subnets
D       12.12.12.0 [90/2195456] via 23.23.23.2, 00:09:05, FastEthernet0/0


R3#ping 200.200.200.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 200.200.200.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 20/24/32 ms



Terlihat bahwa untuk routing ke IP 200.200.200.1/32 sudah OK dan hasil ping sudah berhasil :)

Tidak ada komentar:

Posting Komentar