본문 바로가기

네트워크

OSPF Dynamic Routing( OSPF 동적 경로 ) 설정 2/ area 나눔

 

이번에는 구역을 나누어 OSPF설정을 해주겠습니다.

 

R1(config)#router ospf 2

R1(config-router)#network 192.168.1.0 255.255.255.0 area 100

R1(config-router)#network 192.168.2.0 255.255.255.0 area 100

R1(config-router)#network 172.16.1.0 255.255.255.0 area 100

 

R2(config)#router ospf 2

R2(config-router)#network 192.168.2.0 255.255.255.0 area 100

R2(config-router)#network 192.168.3.0 255.255.255.0 area 0

R2(config-router)#network 192.168.4.0 255.255.255.0 area 0

 

R3(config)#router ospf 2

R3(config-router)#network 192.168.4.0 255.255.255.0 area 0

R3(config-router)#network 192.168.5.0 255.255.255.0 area 0

R3(config-router)#network 192.168.6.0 255.255.255.0 area 200

 

R4(config)#router ospf 2

R4(config-router)#network 192.168.6.0 255.255.255.0 area 200

R4(config-router)#network 192.168.7.0 255.255.255.0 area 200

R4(config-router)#network 172.16.2.0 255.255.255.0 area 200

 

 

 

R1#show ip route 명령어로 라우팅테이블을 확인합니다.

 

 

 

R1은 area 1개

R2은 area 2개-ABR(area border router)  

R3은 area 2개-ABR(area border router)

R4은 area 1개

 

 

O IA (OSPF inter area) 내가 속해있지 않은 area의 네트워크

O (OSPF) 내가 속해있는 area의 네트워크

 

'네트워크' 카테고리의 다른 글

Routing table  (0) 2021.04.29
OSPF - RIP Dynamic Routing( OSPF-RIP 동적 경로 ) 설정  (0) 2021.04.28
OSPF Dynamic Routing( OSPF 동적 경로 ) 설정 1  (0) 2021.04.28
Routing Quiz  (0) 2021.04.27
Dynamic Routing Protocol 정리  (0) 2021.04.27