패킷 스위칭 방식이란? 

우리가 통신하는 순간에도 우리에게 통신회선 전체를 다 빌려주는 것이 아니고, 패킷 하나하나가 나누어서 통신회선을 타고 목적지까지 전달되는 방식이다. 즉, 통신회선을 다른 사람들과 나눠서 쓰는 방식이 패킷 스위치 방식이다.

패킷스위칭 박식으로 통신을 할 때 실제로는 내가 가진 회선이 없지만 마치 내가 목적지까지의 회선을 가지고 있고, 데이터를 그 회선을 통해 전달하는 것처럼 동작하도록 해주어야 한다.

대표적인 예로 프레임릴레이, ATM, X25등이 있고, 프레임릴레이에 대해서 알아보도록 하자.

 

프레임릴레이란?

기존 WAN에서 전통적인? 통신방식인 X25가 있다. X25는 느리고 에러가 많았던 옛날의 WAN환경에 알맞도록 여러가지 에러 복구 기능 및 흐름 제어 기능들이 들어있다. 하지만 프레임 릴레이는 에러복구와 흐름 제어 등의 데이터 처리 과정을 생략함으로써 보다 효율적인 데이터 전송 방법을 제공하는 방법이다.

프레임 릴레이에선 DLCI라는 개념이 나오는데, 프레임 릴레이 연결을 위한 주소라고 생각하면 된다.

 

<실습>




R1의 구성)

interface Loopback0
 ip address 10.10.10.1 255.255.255.0

 

interface Serial1/0
 no ip address
 encapsulation frame-relay      // frame relay포트 지정
 serial restart-delay 0
 no frame-relay inverse-arp     // 자동 할당 기능 없애기

 

interface Serial1/0.234 multipoint                    // Multi와 point to point중에 multi로 설정
 ip address 1.1.234.1 255.255.255.0
 no ip split-horizon
 frame-relay map ip 1.1.234.2 102 broadcast    // R1에서 1.1.234.2의 주소와 통신하기위해 DLCI주소 102과 통신하겠다. 라는 의미
 frame-relay map ip 1.1.234.3 103 broadcast
 frame-relay map ip 1.1.234.4 104 broadcast

 

router rip
 version 2
 network 1.0.0.0
 network 10.0.0.0
 no auto-summary

 

 R2의 구성)

interface Loopback0
 ip address 10.10.20.1 255.255.255.0

 

interface Serial1/0
 no ip address
 encapsulation frame-relay
 serial restart-delay 0
 no frame-relay inverse-arp

 

interface Serial1/0.234 point-to-point
 ip address 1.1.234.2 255.255.255.0
 frame-relay interface-dlci 201          // 자신과 R2의 DLCI번호는 201

 

router rip
 version 2
 network 1.0.0.0
 network 10.0.0.0
 no auto-summary

 

R3의 구성)

interface Loopback0
 ip address 10.10.30.1 255.255.255.0

 

interface Serial1/0
 no ip address
 encapsulation frame-relay
 serial restart-delay 0
 no frame-relay inverse-arp

 

interface Serial1/0.34 point-to-point
 ip address 1.1.34.3 255.255.255.0
 frame-relay interface-dlci 304  

 

interface Serial1/0.234 point-to-point
 ip address 1.1.234.3 255.255.255.0
 frame-relay interface-dlci 301  

 

router rip
 version 2
 network 1.0.0.0
 network 10.0.0.0
 no auto-summary

 

R4의 구성)

interface Loopback0
 ip address 10.10.40.1 255.255.255.0

 

interface Serial1/0
 no ip address
 encapsulation frame-relay
 serial restart-delay 0
 no frame-relay inverse-arp

 

interface Serial1/0.34 point-to-point
 ip address 1.1.34.4 255.255.255.0
 frame-relay interface-dlci 403  

 

interface Serial1/0.234 point-to-point
 ip address 1.1.234.4 255.255.255.0
 frame-relay interface-dlci 401  

 

router rip
 version 2
 network 1.0.0.0
 network 10.0.0.0
 no auto-summary 

 

show frame-relay pvc를 했을때의 설정 정보들...




posted by 경원구