네트워크

[CISCO] Redistribution 라우팅 개념정리 (STATIC, RIP, OSPF, EIGRP)

화이트해커 Luna 🌙 2022. 12. 8. 18:19
728x90
반응형

Redistribution 라우팅

서로 다른 라우팅 프로토콜간에 정보를 전달하기 위해서는 각 라우팅 프로토콜에 맞게 해석하는 과정을redistribution이라 한다.

-목차-
1. Redistribution ‐ RIP
2. Redistribution ‐ OSPF
3. Redistribution ‐ EIGRP

 


1. Redistribution ‐ RIP

 

RIP : STATIC, OSPF, EIGRP
redistribute static
ospf # metric #
eigrp # metric #

 

metric 

다른 라우팅 프로토콜로 부터 이전된 경로의 metric 값은 RIP과 형식이 달라 경로가 무시 될 수 있음으로 16 이하의 적당한 값을 입력한다.

- 전달된 경로의 metric 값이 16보다 크면 RIP는 이를 무시한다.
- Default‐metric을 지정하면 생략 가능하다.

 

예시
# redistribute static
# redistribute ospf 1 metric 5
# redistribute eigrp 100 metric 5

2. Redistribution ‐ OSPF

 

OSPF : STATIC, RIP, EIGRP
redistribute static subnets
rip subnets
eigrp # metric # subnets

 

 metric 

다른 라우팅 프로토콜로 부터 이전된 경로의 metric 값은 OSPF와 형식이 다르므로
값을 직접 지정한다.

 

Subnets 

classless 정보를 전송하기 위해서 사용된다.

 

예시
# redistribute static subnets
# redistribute rip subnets
# redistribute eigrp 100 metric 10 subnets

3. Redistribution ‐ EIGRP

 

EIGRP : STATIC, RIP, OSPF
redistribute static
rip metric K1 K3 K4 K2 K5
ospf # metric K1 K3 K4 K2 K5

 

Metric 

default‐metric으로 BW De Re Lo MTU를 대신할 수 있다.

- K1 : Bandwidth(대역폭)
- K3 : Delay(지연)
- K4 : Reliability(신뢰도)
- K2 : Load(회선사용량)
- K5 : MTU

 

예시
# redistribute static
# redistribute rip metric 10000 10 255 1 1500
# redistribute ospf 1 metric 10000 1000 255 1 1500

 


궁금한점 있으시면 댓글 남겨주세요.

728x90
반응형