'Frame relay'에 해당되는 글 1건
라우터 실습 #6 :: 2008/07/18 12:58

1. 다음 조건에 맞게 Frame-Relay를 구성하여라.
- R1은 Hub 라우터이며, R2와 R3은 스포크 라우터이다.
- R1은 R2와 R3과 Frame-Relay 구간 설정을 실시하여라. 이때, 각각의 라우터는 서브인터페이스를 사용하며, Point-to-Point 타입으로 구성하여라.
[R1 설정]
R1(config)# interface serial 1/3
R1(config-if)# encapsulation frame-relay
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)# interface serial 1/3.12 point-to-point
R1(config-subif)# ip address x.x.12.1 255.255.255.0
R1(config-subif)# frame-relay interface-dlci 102
R1(config-fr-dlci)#exit
R1(config-subif)# exit
R1(config)# interface serial 1/3.13 point-to-point
R1(config-subif)# ip address x.x.13.1 255.255.255.0
R1(config-subif)# frame-relay interface-dlci 103
[R2 설정]
R2(config)# interface serial 1/3
R2(config-if)# encapsulation frame-relay
R2(config-if)# no shutdown
R2(config-if)# exit
R2(config)# interface serial 1/3.12 point-to-point
R2(config-subif)# ip address x.x.12.2 255.255.255.0
R2(config-subif)# frame-relay interface-dlci 201
[R3 설정]
R3(config)# interface serial 1/3
R3(config-if)# encapsulation frame-relay
R3(config-if)# no shutdown
R3(config-if)# exit
R3(config)# interface serial 1/3.13 point-to-point
R3(config-subif)# ip address x.x.13.3 255.255.255.0
R3(config-subif)# frame-relay interface-dlci 301
2. 구성이 완료되었다면, 다음과 같은 정보 확인을 실시하여라.
- 각각의 라우터에서 'show frame-relay map' Command를 이용하여 프레임 릴레이 맵 상태를 확인하여라.
- 각각의 라우터에서 'show frame-relay pvc' Command를 이용하여 PVC 상태를 확인하여라.
- 각각의 라우터에서 인접 Ping 테스트를 실시하여라.
3. 정보 확인이 완료되었다면 위의 Point-to-Point 설정을 삭제하여라.
[R1 설정 삭제]
R1(config)# no interface serial 1/3.12
R1(config)# no interface serial 1/3.13
[R2 설정 삭제]
R2(config)# no interface serial 1/3.12
[R3 설정 삭제]
R3(config)# no interface serial 1/3.13

4. 다음 조건에 맞게 Frame-Relay를 구성하여라.
- R1은 Hub 라우터이며, R2와 R3은 스포크 라우터이다.
- R1은 R2와 R3과 Frame-Relay 구간 설정을 실시하여라. 이때, 각각의 라우터는 서브인터페이스를 사용하며, Multipoint 타입으로 구성하여라.
[R1 설정]
R1(config)# interface serial 1/3
R1(config-if)# encapsulation frame-relay
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)# interface serial 1/3.123 multipoint
R1(config-subif)# ip add x.x.123.1 255.255.255.0
R1(config-subif)# frame-relay map ip x.x.123.2 102 broadcast
R1(config-subif)# frame-relay map ip x.x.123.3 103 broadcast
[R2 설정]
R2(config)# interface serial 1/3
R2(config-if)# encapsulation frame-relay
R2(config-if)# no shutdown
R2(config-if)# exit
R2(config)# interface serial 1/3.123 multipoint
R2(config-subif)# ip add x.x.123.2 255.255.255.0
R2(config-subif)# frame-relay map ip x.x.123.1 201 broadcast
R2(config-subif)# frame-relay map ip x.x.123.3 203 broadcast
[R3 설정]
R3(config)# interface serial 1/3
R3(config-if)# encapsulation frame-relay
R3(config-if)# no shutdown
R3(config-if)# exit
R3(config)# interface serial 1/3.123 multipoint
R3(config-subif)# ip add x.x.123.3 255.255.255.0
R3(config-subif)# frame-relay map ip x.x.123.1 301 broadcast
R3(config-subif)# frame-relay map ip x.x.123.2 302 broadcast
5. 구성이 완료되었다면, 다음과 같은 정보 확인을 실시하여라.
- 각각의 라우터에서 'show frame-relay map' Command를 이용하여 프레임 릴레이 맵 상태를 확인하여라.
- 각각의 라우터에서 'show frame-relay pvc' Command를 이용하여 PVC 상태를 확인하여라.
- 각각의 라우터에서 인접 Ping 테스트를 실시하여라.



