TUJUAN :
- Mempelajari konfigurasi untuk saling redistribute antara satu routing protokol dengan routing protokol yang lain.
- Konfigurasi beberapa routing pada topologi di atas
- konfigurasi pengalamatan IP
- Lakukan mutual redistribution pada R2, R3, dan R4
- Pastikan semua IP masing-masing router bisa di ping oleh semua router
Router 1
R1(config)#int s0/0
R1(config-if)#ip add 12.12.12.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#router rip
R1(config-router)#ver 2
R1(config-router)#net 12.0.0.0
R1(config-router)# no auto-summary
Router 2
R2(config)#int fa0/0
R2(config-if)#ip add 23.23.23.2 255.255.255.0
R2(config-if)#no shut
R2(config-if)#int s0/0
R2(config-if)#ip add 12.12.12.2 255.255.255.0
R2(config-if)#no shut
R2(config-if)#router rip
R2(config-router)#ver 2
R2(config-router)#redistribute ospf 1 metric 1
R2(config-router)#net 12.0.0.0
R2(config-router)#no auto-summary
R2(config-router)#router ospf 1
R2(config-router)#redistribute rip subnets
R2(config-router)#net 23.23.23.2 0.0.0.0 area 0
Router 3
R3(config)#int fa0/0
R3(config-if)#ip add 23.23.23.3 255.255.255.0
R3(config-if)#no shut
R3(config-if)#int f0/1
R3(config-if)#ip add 34.34.34.3 255.255.255.0
R3(config-if)#router eigrp 1
R3(config-router)#redistribute ospf 1 metric 1 1 1 1 1
R3(config-router)#net 34.34.34.3 0.0.0.0
R3(config-router)#no auto-summary
R3(config-router)#router ospf 1
R3(config-router)#redistribute eigrp 1 subnets
R3(config-router)#net 23.23.23.3 0.0.0.0 area 0
Router 4
R4(config)#int f0/0
R4(config-if)#ip add 34.34.34.4 255.255.255.0
R4(config-if)#no shut
R4(config-if)#int s0/0
R4(config-if)#ip add 45.45.45.4 255.255.255.0
R4(config-if)#no shut
R4(config-if)#router eigrp 1
R4(config-router)#redistribute rip metric 1 1 1 1 1
R4(config-router)#net 34.34.34.4 0.0.0.0
R4(config-router)#no auto-summary
R4(config-router)#router rip
R4(config-router)#ver 2
R4(config-router)#redistribute eigrp 1 metric 1
R4(config-router)#net 45.0.0.0
R4(config-router)#no auto-summary
Router 5
R5(config)#int s0/0
R5(config-if)#ip add 45.45.45.5 255.255.255.0
R5(config-if)#no shut
R5(config-if)#router rip
R5(config-router)#ver 2
R5(config-router)#net 45.0.0.0
R5(config-router)#no auto-summary
VERIFIKASI :
R1#sh ip route
Codes: 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
Gateway of last resort is not set
34.0.0.0/24 is subnetted, 1 subnets
R 34.34.34.0 [120/1] via 12.12.12.2, 00:00:04, Serial0/0
23.0.0.0/24 is subnetted, 1 subnets
R 23.23.23.0 [120/1] via 12.12.12.2, 00:00:05, Serial0/0
12.0.0.0/24 is subnetted, 1 subnets
C 12.12.12.0 is directly connected, Serial0/0
45.0.0.0/24 is subnetted, 1 subnets
R 45.45.45.0 [120/1] via 12.12.12.2, 00:00:05, Serial0/0
R1#
R2#sh ip route
Codes: 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
Gateway of last resort is not set
34.0.0.0/24 is subnetted, 1 subnets
O E2 34.34.34.0 [110/20] via 23.23.23.3, 00:01:17, FastEthernet0/0
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
C 12.12.12.0 is directly connected, Serial0/0
45.0.0.0/24 is subnetted, 1 subnets
O E2 45.45.45.0 [110/20] via 23.23.23.3, 00:01:15, FastEthernet0/0
R2#
R3#sh ip route
Codes: 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
Gateway of last resort is not set
34.0.0.0/24 is subnetted, 1 subnets
C 34.34.34.0 is directly connected, FastEthernet0/1
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
O E2 12.12.12.0 [110/20] via 23.23.23.2, 00:14:15, FastEthernet0/0
45.0.0.0/24 is subnetted, 1 subnets
D EX 45.45.45.0 [170/2560025856] via 34.34.34.4, 00:01:40, FastEthernet0/1
R3#
R4#sh ip route
Codes: 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
Gateway of last resort is not set
34.0.0.0/24 is subnetted, 1 subnets
C 34.34.34.0 is directly connected, FastEthernet0/0
23.0.0.0/24 is subnetted, 1 subnets
D EX 23.23.23.0 [170/2560025856] via 34.34.34.3, 00:02:03, FastEthernet0/0
12.0.0.0/24 is subnetted, 1 subnets
D EX 12.12.12.0 [170/2560025856] via 34.34.34.3, 00:02:03, FastEthernet0/0
45.0.0.0/24 is subnetted, 1 subnets
C 45.45.45.0 is directly connected, Serial0/0
R4#
R5#sh ip route
Codes: 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
Gateway of last resort is not set
34.0.0.0/24 is subnetted, 1 subnets
R 34.34.34.0 [120/1] via 45.45.45.4, 00:00:01, Serial0/0
23.0.0.0/24 is subnetted, 1 subnets
R 23.23.23.0 [120/1] via 45.45.45.4, 00:00:01, Serial0/0
12.0.0.0/24 is subnetted, 1 subnets
R 12.12.12.0 [120/1] via 45.45.45.4, 00:00:01, Serial0/0
45.0.0.0/24 is subnetted, 1 subnets
C 45.45.45.0 is directly connected, Serial0/0
R5#
0 komentar:
Posting Komentar