REDISTRIBUTE WITH RIP - EIGRP #9 ( CCNP )
EIGRP #9 :
REDISTRIBUTE WITH RIP
Required :
- Laptop
- VMware
- EVE NG
RIP atau Routing Information Protocol adalah Protokol Routing Dynamic yang digunakan dalam jaringan, dan dia adalah Routing Dynamic paling simple, dan Redistribute adalah metode routing yang digunakan untuk meredistribusikan atau meneruskan suatu routing ke routing yang lain agar dapat saling menukarkan routing table masing-masing / metode untuk menghubungkan antara 2 routing, dan di lab ini Redistribute EIGRP dengan RIP
Berikut cara Redistribute with RIP:
Nyalakan VMWarenya dan Masuk ke Eve NG lalu Buatlah Topologi seperti ini :
Pertama Tambahkan IP serta Routing Eigrp dan RIP sesuai di topologi kalian masing masing:
R1 :
Router(config)#int e0/0
Router(config-if)#ip address 10.10.10.1 255.255.255.0
Router(config-if)#no sh
Router(config-if)#int lo1
Router(config-if)#ip address 1.1.1.1 255.255.255.255
R2 :
Router(config)#int e0/0
Router(config-if)#ip address 10.10.10.2 255.255.255.0
Router(config-if)#no sh
Router(config)#int e0/1
Router(config-if)#ip address 20.20.20.1 255.255.255.0
Router(config-if)#int lo1
Router(config-if)#ip address 2.2.2.2 255.255.255.255
R3 :
Router(config)#int e0/0
Router(config-if)#ip address 20.20.20.2 255.255.255.0
Router(config-if)#no sh
Router(config-if)#int lo1
Router(config-if)#ip address 3.3.3.3 255.255.255.255
Tambahkan Routing RIP dan EIGRP :
Note : Pastikan Pembagian Routing sama dengan yang ini ( atau kalian ingin bagi sendiri )
R1 / RIP :
Router(config-if)#router rip
Router(config-router)#ver 2
Router(config-router)#network 10.10.10.0
Router(config-router)#network 1.1.1.1
R2 / RIP & EIGRP :
Router(config-if)#router rip
Router(config-router)#ver 2
Router(config-router)#network 10.10.10.0
Router(config-router)#network 2.2.2.2
Router(config)#router eigrp 10
Router(config-router)#network 20.20.20.0 0.0.0.255
R3 / EIGRP :
Router(config-if)#router eigrp 10
Router(config-router)#network 20.20.20.0 0.0.0.255
Router(config-router)#network 3.3.3.3 0.0.0.0
Router(config-router)#no aut
Setelah semua itu selesai, saatnya mengonfig Redistribute :
Tambahkan Rule redistribute di RIP dan EIGRP :
Router(config-if)#router rip= masuk ke Routing RIP
Router(config-router)#redistribute eigrp 10 metric 1= tambahkan Rule Redistribute dengan "redistribute ( nomor routing eigrp ) metric 1"
Router(config)#router eigrp 10= masuk ke Routing EIGRP
Router(config-router)#redistribute rip metric 1 1 1 1 1= tambahkan Rule Redistribute dengan "redistribute rip metric 1 1 1 1 1"
Jika sudah maka silahkan Check Routing table R1 dan R3, maka ada EX di sana, Jika ada maka berhasil :
R3 :
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
D EX 1.0.0.0/8 [170/2560025856] via 20.20.20.1, 00:02:06, Ethernet0/0
2.0.0.0/32 is subnetted, 1 subnets
D EX 2.2.2.2 [170/2560025856] via 20.20.20.1, 00:02:06, Ethernet0/0
3.0.0.0/32 is subnetted, 1 subnets
C 3.3.3.3 is directly connected, Loopback1
10.0.0.0/24 is subnetted, 1 subnets
D EX 10.10.10.0 [170/2560025856] via 20.20.20.1, 00:02:06, Ethernet0/0
20.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 20.20.20.0/24 is directly connected, Ethernet0/0
L 20.20.20.2/32 is directly connected, Ethernet0/0
Komentar
Posting Komentar