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

Routing Redistribute 본문

Simple is IT/Network

Routing Redistribute

currenjin 2020. 4. 26. 21:32

라우팅 프로토콜의 재분배 (Routing Redistribute)

- 서로 다른 라우팅 프로토콜 간의 원활한 통신을 위해 사용하는 기술이다.

EIGRP - OSPF 간 재분배

재분배 실습 예시

모든 IP 설정과 각 라우팅 프로토콜의 설정이 완료된 상태로 가정

<R1>

(config)#router ospf 1

(config-router)#redistribute eigrp 10 subnets //ospf에 eigrp 10에 대한 정보를 넘겨줌

E2 - OSPF external type 2

R2에서 확인한 라우팅 테이블 값

(config)#router eigrp 10

(config-router)#redistribute ospf 1544 2000 255 1 1500

EX - EIGRP external

R4에서 확인한 라우팅 테이블 값

Connected - OSPF 간 재분배

Connected - OSPF redistribute 예제

connected - ospf

<R1>

(config)#router ospf 1

(config-router)#redistribute connected subnets

R3에서 확인한 Routing Table 값

<R3>

(config)#router ospf 1

(config-router)#redistribute connected subnets

R1에서 확인한 Routing Table 값

EIGRP - RIP 간 재분배

EIGRP - RIP restribute 예제

eigrp - rip

<R2>

(config)#router rip

(config-router)#redistribute eigrp 10 metric 3 // hop count

R4에서 확인한 라우팅 테이블 값

rip - eigrp

<R2>

(config)#router eigrp 10

(config-router)#redistribute rip metric 1544 2000 255 1 2000

R1에서 확인한 라우팅 테이블 값

RIP - EIGRP - OSPF - CONNECTED 간의 재분배

RIP - EIGRP - OSPF - CONNECTED 재분배 실습 예제

RIP - EIGRP

<R2>

(config)#router rip

(config-router)#redistribute eigrp 10 metric 5

(config)#router eigrp 10

(config-router)#redistribute rip metric 1544 2000 255 1 1500

EIGRP - OSPF

<R3>

(config)#router eigrp 10

(config-router)#redistribute ospf 1 metric 1544 2000 255 1 1500

(config)#router ospf 1

(config-router)#redistribute eigrp 10 subnets

Connected - OSPF

<R6>

(config)#router ospf 1

(config-router)#redistribute connected subnets


Comments