본문으로 바로가기

OSPF 실습

category SECURITY/Network 실습 2017. 3. 15. 20:22

 

OSPF 실습

 

 

※ secureCRT로 실습했습니다.

OSPF 이론 참고 : http://security04.tistory.com/52

OSPF 설정

 

[설정방법]

router ospf [OSPF Process Number]

router-id [Router-id-number]
passive-interface default
no passive-interface serial 1/0
 network [IP Address] [Wildcardmask] [Area]

 

[정보확인]

show ip route

show ip route ospf

show ip protocol

show ip ospf neighbor

show ip ospf database

show ip ospf interface serial 1/x

show ip ospf interface fastethernet 1/x

예시) OSPF Process = 100, Area = 0, Router-ID =1.1.1.1

예시대로 설정해 본 것이다.

 

 

"Show ip route"명령을 통해 살펴보면 얖에 O 라는 표시는 OSPF로 데이터를 연결되어있다는 표시임을 알 수 있다.

 

 

기존대역폭 변경

 

[설정방법]

router ospf [OSPF Process Number]

auto-cost reference-bandwidth [변경하고자 하는 대역폭]

 

기준 대역폭을 설정 전 "Show ip route" 명령으로 살펴보면 현재 OSPF인 65,128,129로 기준대역폭이 설정되어있음을 볼 수 있다.

 

 

대역폭을 변경하는 명령어를 사용할 때 1000으로 바꾸어 설정한 뒤 다시 "Show ip route"를 사용해보면 대역폭이 바뀌었다는 것을 확인할 수 있다.

 

 

Loopback Interface

 

[설정방법]

interface loopback [Process Number]
 ip ospf network point-to-point

 

 

 

Loopback이 원래는 Loopback 172 = 172.16.3.0/24 설정되어야 되는데 하나의 OSPF에서는 하나의 Host로 인식이 되었다.

 

 

따라서 네트워크 타입을 점대점 방식(Point-to-Point)로 바꾸고 나서 다시 살펴보게 되면 원래의 Subnet으로 보여지게 되는 것을 확인할 수 있다.

 

 

 

 

'SECURITY > Network 실습' 카테고리의 다른 글

NAT 실습  (0) 2017.03.16
ACL 실습  (0) 2017.03.16
EIGRP 실습  (0) 2017.03.15
EIGRP 실습  (0) 2017.03.14
RIPv1과 RIPv2 설정 실습  (0) 2017.03.14