라우팅 재분배 (redistribute)
라우팅 재분배란 ?
서로 다른 라우팅 프로토콜을 사용하는 네트워크 즉, 서로 다른 AS의 장비들끼리 통신이 가능하도록 하는 것.
라우팅 프로토콜이 다른 두대의 라우터의 라우팅 정보를 공유하라는 의미.
재분배의 종류
- 상호 재분배 : 두 개 이상의 라우팅 프로토콜 상호간의 재분배
- 단방향 재분배 : 하나의 라우팅 프로토콜만 재분배. 나머지 프로토콜은 디폴트 경로 또는 정적 경로를 사용하는 경우가 많고 관리가 편하며 안정적이기 때문에 상호 재분배보다 많이 사용.
재분배 설정 명령어
각 라우팅 프로토콜마다 재분배 명령어가 상이.
각 라우팅 프로토콜마다 사용하는 metric 지정 필요.
RIP <-> EIGRP
(config)# router rip
(config-router)# redistribute eigrp [eigrp process ID] metric [rip hop count]
(config)# router eigrp [eigrp process ID]
(config-router)# redistribute rip metric [bandwidth] [delay] [reliability] [load] [MTU maximum size]
metric값은 각각 숫자로 입력.
OSPF <-> EIGRP
(config)# router ospf [ospf process ID]
(config-router)# redistribute eigrp [eigrp process ID] subnets
(config)# router eigrp [eigrp process ID]
(config-router)# redistribute ospf [ospf process ID] metric [bandwidth] [delay] [reliability] [load] [MTU maximum size]
subnets를 써주는 이유는 생성된 서브넷 정보도 사용할 수 있도록 재분배하기 위함.
만약 없으면 라우팅 테이블에 classful 주소만 포함.
RIP <-> OSPF
(config)# router rip
(config-router)# redistribute ospf [ospf process ID] metric [rip hop count]
(config)# router ospf [ospf process ID]
(config-router)# redistribute rip subnets
1. 재분배시킬 라우팅 프로토콜 설정모드 진입
2. redistribute 상대 프로토콜 metric 현재 프로토콜 메트릭 값 (ospf는 subnets)
'네트워크 > 라우터' 카테고리의 다른 글
FHRP (First Hop Redundancy Protocol) (0) | 2024.11.07 |
---|---|
PBR (Policy Based Routung) 정책 기반 라우팅 (0) | 2023.11.22 |
GRE & IPsec Tunneling (0) | 2023.11.04 |
VRF (Virtual Routing and Forwarding) (0) | 2023.11.04 |
Frame relay (0) | 2023.11.04 |