본문 바로가기
공부/CCNP

Cisco Router Path Control(2)

by kyoung-ho 2021. 11. 20.
반응형

** Routing Protocol 변경 **

 

<R1/R2/R4>

conf t

no router eigrp 100

 

<R1>

conf t

no access-list 10

router rip

no distance 100 1.1.100.6 0.0.0.0 10

no redi eigrp 100

!

 

<R4>

conf t

router rip

no distance 100 1.1.100.14 0.0.0.0 1

no redi eigrp 100 metric 2 route-map RIP_Metric

!

no access-list 1

no access-list 50

no route-map RIP_Metric

 

** OSPF Configuration **

 

<R2>

conf t

int lo 1

 ip add 22.22.22.22 255.255.255.0

!

router ospf 1

 router-id 2.2.2.2

 net 1.1.100.1 0.0.0.0 area 0

 net 1.1.100.9 0.0.0.0 area 0

 redistribute connected subnets

!

 

<R1>

conf t

router ospf 1

 router-id 1.1.1.1

 net 1.1.1.1 0.0.0.0 area 0

 net 1.1.100.2 0.0.0.0 area 0

 redistribute rip subnets

!  

router rip

 redistribute ospf 1 metric 2

!

 

<R4>

conf t

router ospf 1

 router-id 4.4.4.4

 net 4.4.4.4 0.0.0.0 area 0

 net 1.1.100.10 0.0.0.0 area 0

 redistribute rip subnets

!

router rip

 redistribute ospf 1 metric 2

!

 

- OSPF의 Loopback을 Host Route(/32)로 인식한다.

  원래 network 대역으로 광고하려면 다음과 같이

  network-type을 point-to-point로 변경한다.

 

<R1/R4>

conf t

int lo 0

 ip ospf network point-to-point

!

 

- R2의 Loopback들의 경우 원래부터 /24로 광고되고

  있다. 이유는? 해당 Loopback 인터페이스로 OSPF

  network로 광고한 것이 아니라 재분배로 설정한

  외부 정보이기 때문이다.

 

- <R1/R4> 중 하나의 Routing table을 확인해보면

  RIP 정보를 OSPF 구간으로 우회하고 있는 것을

  확인할 수 있다. 이유는 RIP으로 재분배 된 정보의

  AD값이 110으로 RIP이 광고하는 정보(AD=120)보다

  더 우선되기 때문이다. 이를 해결해보자!

 

<R4>

conf t

access-list 1 permit 3.3.3.0 0.0.0.255

access-list 1 permit 1.1.100.4 0.0.0.3

 

router ospf 1

 distance 130 1.1.1.1 0.0.0.0 1

!

 

<R1>

conf t

access-list 1 permit 3.3.3.0 0.0.0.255

access-list 1 permit 1.1.100.12 0.0.0.3

 

router ospf 1

 distance 130 4.4.4.4 0.0.0.0 1

!

 

=> RIP과 EIGRP의 경우 distance 명령어의 source

   IP 주소는 해당 Routing Protocol 정보를 광고

   해주는 인접 장비의 IP 주소를 입력하면 된다.

 

   OSPF의 경우는 다음 상황에 따라 source IP 

   주소가 다르게 사용된다.

   1) 내부 Area 정보( O )  -> 인접 장비의 Router-ID

   2) 다른 Area 정보( IA ) -> ABR의 Router-ID

   3) 재분배 된 정보(E1/E2)-> ASBR의 Router-ID

 

<R1>

conf t

router ospf 1

 no distance 130 4.4.4.4 0.0.0.0 1

!

no access-list 1

 

router ospf 1

 distance ospf external 130

!

=> EIGRP와 비슷하게 OSPF의 경우도 OSPF 코드에 따라

   AD 값을 다르게 부여하는 것이 가능하다.

 

- R3의 Routing Table에 R4의 Loopbakc 경로가 load-

  balancing 되고 있다. 이유는 R1/R4에서 재분배시

  Metric 값을 동일하게 2로 설정하였기 때문이다.

 

  이를 최적 경로인 R4 경로만 사용하도록 변경하자.

  (R1에서만 설정이 가능한 상황으로 가정)

 

<R1>

conf t

access-list 2 permit 4.4.4.0 0.0.0.255

 

route-map Metric_Pol permit 10

 match ip address 2

 set metric 3

!

route-map Metric_Pol permit 20

 

router rip 

 redistribute ospf 1 metric 2 route-map Metric_Pol

!

 

---------------------------------------------------------

** Topology 변경 **

 

<R2>

conf t

no int lo 0

no int lo 1

 

int fa 0/1

 ip add 1.1.100.17 255.255.255.252

 no shut

!

router eigrp 10

 no auto-summary

 net 1.1.100.17 0.0.0.0

 redi ospf 1 metric 100000 10 255 1 1500

!

router ospf 1

 no redi connected

 redistribute eigrp 10 subnets

!

 

<R6>

conf t

int lo 0

 ip add 6.6.6.6 255.255.255.0

!

int lo 1 

 ip add 9.9.9.9 255.255.255.0

!

int fa 0/0

 ip add 1.1.100.18 255.255.255.252

 no shut

!

int fa 0/1

 ip add 1.1.100.21 255.255.255.252

 no shut

!

router eigrp 10

 no auto

 net 9.9.9.9 0.0.0.0 

 net 1.1.100.18 0.0.0.0

 net 1.1.100.21 0.0.0.0

 redi connected

!

 

<R5>

conf t

int fa 0/1

 ip add 1.1.100.22 255.255.255.252

 no shut

!

int fa 0/0

 ip add 1.1.100.9 255.255.255.252

 no shut

!

router ospf 1

 router-id 5.5.5.5

 no net 1.1.100.10 0.0.0.0 area 0

 net 1.1.100.9 0.0.0.0 area 0

 redi eigrp 10 subnets

!

router eigrp 10

 no auto

 net 1.1.100.22 0.0.0.0

 redi ospf 1 metric 100000 10 255 1 1500

!

 

<R1>

conf t

router ospf 1

 no distance ospf external 130

!

router rip

no redi ospf 1 metric 2 route-map Metric_Pol

redi ospf 1 metric 2

!

 

<R4>

conf t

router ospf 1

no distance 130 1.1.1.1 0.0.0.0 1

!

 

반응형

'공부 > CCNP' 카테고리의 다른 글

Cisco Router Path Control(1)  (0) 2021.11.20
Cisco Router ACL 설정  (0) 2021.11.20
ICT보안실무_NTP  (0) 2017.06.11
ICT보안실무_실습  (0) 2017.06.11
ICT보안실무_DHCP Relay Agent  (0) 2017.05.14

댓글