DIỄN ĐÀN NÂNG TẦM TRI THỨC
Would you like to react to this message? Create an account in a few clicks or log in to continue.

CẤU HÌNH FRAME-RELAY POINT-TO-POINT

Go down

CẤU HÌNH FRAME-RELAY POINT-TO-POINT Empty CẤU HÌNH FRAME-RELAY POINT-TO-POINT

Post  chantroitinhoc Thu Sep 22, 2011 8:20 pm

1. Mô hình triển khai 1:

CẤU HÌNH FRAME-RELAY POINT-TO-POINT Point-10

Các bạn download video cấu hình tại đây: Configuring Frame-Relay Point-t0-Point


-----------------------------------------------------------------------------------------------------------------------------------------------------------------------

2. Mô hình triển khai 2:

CẤU HÌNH FRAME-RELAY POINT-TO-POINT Point-11

Các bạn download video cấu hình tại đây: Configuring Frame-Relay Point-t0-Point P2


-----------------------------------------------------------------------------------------------------------------------------------------------------------------------


3. Cách cấu hình Frame-Relay Point-to-Point trên GNS 3 (Topology 1):


CẤU HÌNH FRAME-RELAY POINT-TO-POINT Point-10

Trước tiên, chúng ta sẽ cấu hình Frame Relay switch. Chúng ta cần kích hoạt tính năng switching trên router và chỉ định loại interface là DCE (vì mặc định router ở đầu cuối là thiết bị DTE).

FR-SWITCH(config)#frame-relay switching

FR-SWITCH(config)#interface serial 1/0
FR-SWITCH(config-if)#encapsulation frame-relay
FR-SWITCH(config-if)#frame-relay intf-type dce
FR-SWITCH(config-if)#frame-relay route 102 interface serial 1/1 201
FR-SWITCH(config-if)#frame-relay route 103 interface serial 1/2 301
FR-SWITCH(config-if)#no shutdown

FR-SWITCH(config-if)#interface serial 1/1
FR-SWITCH(config-if)#encapsulation frame-relay
FR-SWITCH(config-if)#frame-relay intf-type dce
FR-SWITCH(config-if)#frame-relay route 201 interface s1/0 102
FR-SWITCH(config-if)#frame-relay route 203 interface s1/2 302
FR-SWITCH(config-if)#no shutdown

FR-SWITCH(config-if)#interface serial 1/2
FR-SWITCH(config-if)#encapsulation frame-relay
FR-SWITCH(config-if)#frame-relay intf-type dce
FR-SWITCH(config-if)#frame-relay route 301 interface s1/0 103
FR-SWITCH(config-if)#frame-relay route 302 interface s1/1 203
FR-SWITCH(config-if)#no shutdown

Ta kiểm tra lại các đường đi trên Frame Relay switch bằng câu lệnh show frame-relay route

FR-SWITCH#show frame-relay route

Bây giờ chúng ta phải cấu hình các Router. Về mặt cơ bản là bậc tính năng encapsulation frame-relay rồi chỉ định DLCI và IP.

Cấu hình trên R1:


R1(config)#interface serial 1/0
R1(config-if)#encapsulation frame-relay
R1(config-if)#no shutdown

R1(config)#interface serial 1/0.12 point-to-point
R1(config-subif)#ip address 10.1.1.1 255.255.255.252
R1(config-subif)#frame-relay interface-dlci 102

R1(config)#interface serial 1/0.13 point-to-point
R1(config-subif)#ip address 10.1.1.5 255.255.255.252
R1(config-subif)#frame-relay interface-dlci 103

Cấu hình trên R2:

R2(config)#interface serial 1/0
R2(config-if)#encapsulation frame-relay
R2(config-if)#no ip address
R2(config-if)#no shutdown

R2(config)#interface serial 1/0.21 point-to-point
R2(config-subif)#ip address 10.1.1.2 255.255.255.252
R2(config-subif)#frame-relay interface-dlci 201

R2(config)#interface serial 1/0.23 point-to-point
R2(config-subif)#ip address 10.1.1.9 255.255.255.252
R2(config-subif)#frame-relay interface-dlci 203

Cấu hình trên R3:

R3(config)#interface serial 1/0
R3(config-if)#encapsulation frame-relay
R3(config-if)#no ip address
R3(config-if)#no shutdown

R3(config)#interface serial 1/0.31 point-to-point
R3(config-subif)#ip address 10.1.1.6 255.255.255.252
R3(config-subif)#frame-relay interface-dlci 301

R3(config)#interface serial 1/0.32 point-to-point
R3(config-subif)#ip address 10.1.1.10 255.255.255.252
R3(config-subif)#frame-relay interface-dlci 302

Bây giờ bạn ping giữa các router để kiểm tra kết quả cấu hình.

Các bạn download video cấu hình tại đây: Configuring Frame-Relay Point-t0-Point on GNS3

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------


4. Cách cấu hình Frame-Relay Point-to-Point với EIGRP trên GNS 3 (Topology 2):


CẤU HÌNH FRAME-RELAY POINT-TO-POINT Topolo13

Trong mô hình này chúng ta xét đến topology HUB và Spoke, R1 được dùng như HUB Router và R2 với R3 dùng như các Spoke Router.

Cấu hình trên R1:

interface Serial0/0
no ip address
encapsulation frame-relay

interface Serial0/0.1 point-to-point
ip address 192.168.0.1 255.255.255.0
frame-relay interface-dlci 102

interface Serial0/0.2 point-to-point
ip address 192.168.1.1 255.255.255.0
frame-relay interface-dlci 103

Cấu hình trên R2:

interface Serial0/0
no ip address
encapsulation frame-relay

interface Serial0/0.1 point-to-point
ip address 192.168.0.2 255.255.255.0
frame-relay interface-dlci 201

Cấu hình trên R3:

interface Serial0/0
no ip address
encapsulation frame-relay

interface Serial0/0.1 point-to-point
ip address 192.168.1.2 255.255.255.0
frame-relay interface-dlci 301


Bây giờ chúng ta cấu hình EIGRP để định tuyến các traffic giữa các Spoke Router.

Cấu hình định tuyến trên R1:

router eigrp 1
network 192.168.0.0
network 192.168.1.0
no auto-summary

Cấu hình định tuyến trên R2:

router eigrp 1
network 192.168.0.0
no auto-summary

Cấu hình định tuyến trên R3:

router eigrp 1
network 192.168.1.0
no auto-summary



Các bạn download video cấu hình tại đây: Configuring Frame-Relay Point-t0-Point Hub and Spokes on GNS3
chantroitinhoc
chantroitinhoc
Admin

Posts : 149
Join date : 2008-01-16

http://chantroitinhoc.niceboard.net

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum