Simple is IT, 누구나 보고 누구나 깨닫는 IT

동적 라우팅 프로토콜 - RIP(Routing Information Protocol) 본문

Simple is IT/Network

동적 라우팅 프로토콜 - RIP(Routing Information Protocol)

currenjin 2020. 4. 26. 21:24

RIP (Routing Information Protocol)

- 라우터의 수로 최적의 경로를 설정한다.

RIP

- Distance Vector Routing Protocol이며 Ver1, 2가 있다.(Ver1 : Classful, Ver2 : 그 이상)

- UDP 520번 사용

- AD값은 120(ad 값은 낮을 수록 우선순위, Static : 1, EIGRP : 90/170, OSPF : 110)

RIP의 라우팅 테이블 공유 과정

Convergence Time (수렴 시간)

- Convergence : 네트워크에 대한 변화가 생길 경우 모든 Router가 네트워크 변화 상태에 대해 정확하고 일관된 정보를 유지하는 것.

- Convergence time : 그 변화된 정보를 서로 인식하고 수정하는 시간

( Routing Protocol 별로 다르며 Time이 짧을 수록 좋다, RIP는 30초 )

RIP Convergence 과정

0, 1, 2 : 홉 수( convergence time 주기 )

But, RIP의 라우팅 루프가 발생할 경우 올바른 정보를 얻기 까지의 시간이 상당하다.

So. 1. Split Horizon : 정보를 받은 인터페이스로 정보를 전달하지 않음

2. Route Poisoning : 장애 발생시 메트릭 값을 16으로 지정

3. Hold-Down Timer : 일정시간 정보를 못 받으면 삭제

4. Triggered Update : 네트워크 변화 생길 시 광고

RIP 설정 방법

R1(config)#router rip

R1(config-router)#version 2

R1(config-router)#no auto-summary

R1(config-router)#network x.x.x.x

실습

실습 예제

<R1>

R1(config)#Router rip

R1(config-router)#version 2

R1(config-router)#no auto-summary

R1(config-router)#network 211.100.10.0

R1(config-router)#network 10.10.10.0

<R2>

R2(config)#Router rip

R2(config-router)#version 2

R2(config-router)#no auto-summary

R2(config-router)#network 211.100.10.0

R2(config-router)#network 201.100.1.0

R2(config-router)#network 20.20.20.0

<R3>

R3(config)#Router rip

R3(config-router)#version 2

R3(config-router)#no auto-summary

R3(config-router)#network 201.100.1.0

R3(config-router)#network 30.30.30.0

R1의 결과물.(광고 잘 됨 확인)

실습 2

실습 예제2

위와 동일하게 설정 후

R1의 결과물.(광고 잘 됨 확인)

ex) 윗 구성에서 축약의 예제

R1 : 162.10.2.0/24, 162.10.3.0/24

R2 : 162.10.4.0/24, 162.10.5.0/24

R3 : 162.10.6.0/24, 162.10.7.0/24

위 보유하고 있는 대역대들과 통신하기 위해서는 어쩔 수 없이 그 것을 보유하고 있는 라우터로 접속할 수 밖에 없다.

그러므로 라우팅 테이블의 부담을 줄여주기 위해 축약을 하는데

-> 축약해보면

-interface 접속 후

ip summary-address rip 162.10.2.0 255.255.254.0

ip summary-address rip 162.10.4.0 255.255.254.0

ip summary-address rip 162.10.6.0 255.255.254.0

R1 : 162.10.2.0/23

R2 : 162.10.4.0/23

R3 : 162.10.6.0/23

# RIP 축약 시에는 Supernetting 사용

Comments