II. NỘI DUNG THỰC HÀNH
3. Cấu hình kết hợp giữa RIPv2 và OSPF
Phần thực hành này gồm các nội dung nâng cao, giúp người học nắm vững:
- Router 1, Router2 sử dụng RIPv2 để quảng bá thông tin định tuyến
- Router 2, Router3 sử dụng OSPF để quảng bá thông tin định tuyến
Hình 5.3. Cấu hình định tuyến kết hợp giữa RIPV2 và OSPF
Các bước thực hiện:
Bước 1:Cấu hình Router R1
Router> en Router# conf t Router(config)# hostname R1 R1(config)# no ip domain-lookup R1(config)#int lo0 R1(config-if)#ip addr 192.168.1.1 255.255.255.0 R1(config-if)#exit R1(config)#int s0/1 R1(config-if)#ip addr 192.168.2.1 255.255.255.0 R1(config-if)#clock rate 64000 R1(config-if)#no shut R1(config-if)#exit
Bước 2:Cấu hình Router R2
Router> en Router# conf t Router(config)# hostname R2 R2(config)# no ip domain-lookup R2(config)#int s0/0 R2(config-if)#ip addr 192.168.2.2 255.255.255.0 R2(config-if)#no shut R2(config-if)#exit R2(config)#int s0/1
R2(config-if)#ip addr 192.168.3.1 255.255.255.0
R2(config-if)#clock rate 64000 R2(config-if)#no shut
R2(config-if)#exit
Bước 3:Cấu hình Router R3
Router> en Router# conf t Router(config)# hostname R3 R3(config)# no ip domain-lookup R3(config)#int s0/0 R3(config-if)#ip addr 192.168.3.2 255.255.255.0 R3(config-if)#no shut R3(config-if)#exit R3(config)#int lo0 R3(config-if)#ip addr 192.168.4.1 255.255.255.0 R3(config-if)#exit
Bước 4:Cấu hình định tuyến RIPv2
R1(config)#router rip R1(config-router)#version 2 R1(config-router)#network 192.168.1.0 R1(config-router)#network 192.168.2.0 R1(config-router)#no auto-summary R1(config-router)#end R2(config)#router rip R2(config-router)#version 2 R2(config-router)#network 192.168.2.0 R2(config-router)#no auto-summary R2(config-router)#exit
Bước 5:Cấu hình định tuyến OSPF
R2(config)#router ospf 1
R3(config)#router ospf 1
R3(config-router)#network 192.168.3.0 0.0.0.255 area 0 R3(config-router)#network 192.168.4.0 0.0.0.255 area 0 R3(config-router)#end
Bước 6:Redistribute giữa RIPv2 và OSPF R2(config)#router rip
R2(config-router)#redistribute ospf 1 metric 1 R2(config-router)#exit
R2(config)#router ospf 1
R2(config-router)#redistribute rip metric 1 subnets R2(config-router)#end
Bước 7:Kiểm tra bảng định tuyến
R1#clear ip route *
Trên Router R1: R1#show ip route
Codes: C - connected, S - static, I - IGRP, 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, E - EGP i - IS-IS, 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
C 192.168.1.0/24 is directly connected, Loopback0 C 192.168.2.0/24 is directly connected, Serial0/1
R 192.168.3.0/24 [120/1] via 192.168.2.2, 00:00:21, Serial0/1 192.168.4.0/32 is subnetted, 1 subnets
Trên Router R2: R2#show ip route
Codes: C - connected, S - static, I - IGRP, 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, E - EGP i - IS-IS, 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
R 192.168.1.0/24 [120/1] via 192.168.2.1, 00:00:17, Serial0/0 C 192.168.2.0/24 is directly connected, Serial0/0
C 192.168.3.0/24 is directly connected, Serial0/1 192.168.4.0/32 is subnetted, 1 subnets
O 192.168.4.1 [110/65] via 192.168.3.2, 00:04:17, Serial0/1
Trên Router R3: R3#show ip route
Codes: C - connected, S - static, I - IGRP, 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, E - EGP i - IS-IS, 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
O E2 192.168.1.0/24 [110/1] via 192.168.3.1, 00:00:30, Serial0/0 O E2 192.168.2.0/24 [110/1] via 192.168.3.1, 00:00:30, Serial0/0 C 192.168.3.0/24 is directly connected, Serial0/0
C 192.168.4.0/24 is directly connected, Loopback0
Nhận xét:
- Ưu điểm của việc kết hợp RIPv2 và OSPF là gì?
- Để cấu hình định cấu hình kết hợp RIPv2 và OSPF cần sử dụng những lệnh nào? ... ... ... ... ... ... ... ... ... ... ... ... ... ...
Bài tập: Tiến hành cấu hình cơ bản và định tuyến động sử dụng giao thức kết hợp giữa
BÀI 6
NETWORK ADDRESS TRANSLATION
Họ và tên sinh viên:
Ngày:
Thời gian thực hiện: 6 tiết
Điểm 1. Kỹ thuật (6đ): 2. Thao tác (1đ): 3. An toàn (1đ): 4. Tổ chức nơi làm việc (1đ): 5. Thời gian (1đ): Lời phê I. MỤC ĐÍCH - YÊU CẦU 1. Mục đích
Trang bị cho người học:
- Kỹnăng cấu hình NAT tĩnh, NAT động
- Kỹnăng nhận biết và khắc phục các lỗi thông thường
2. Yêu cầu
Sau khi hoàn thành bài thực hành, người học cần đạt được các yêu cầu sau:
- Cấu hình thành công NAT tĩnh, NAT động.
- Xử lý các lỗi và sự cố thông thường.
- Phân biệt được ưu, nhược điểm của các phương pháp NAT
II. NỘI DUNG THỰC HÀNH
➢ Chuẩn bị:
- Máy tính có hệ điều hành Windows. - Thiết bị Cisco
- Dây cáp kết nối