Contents

축약, DR/BDR/DROther

   Dec 28, 2022     3 min read

# Ex 01. EIGRP 축약

Untitled

조건)
R5에서 ping을 223.255.255.1로 보내기
-> AD 값을 조정해야 됨

방법)

R2)
int s1/1
ip summary-address eigrp 100 0.0.0.0 0.0.0.0 120

R3)
int s1/1
ip summary-address eigrp 100 0.0.0.0 0.0.0.0 110

R4)
int s1/1
ip summary-address eigrp 100 0.0.0.0 0.0.0.0 100

결과 - 오류 발생)

Untitled (1)

192.168.10.1까지는 가는데 223.255.255.1까지는 안 감

해결)

R1에서 loopback 1 재분배 해야 됨.

결과 - R5)

Untitled (2)

과정의 오류)

100은 R2에는 줄 필요가 없고,
R3이랑 R4에서 줄 필요가 있다.
왜냐하면 R3이랑 R4에서 0.0.0.0이 2개니까. 그런데 R2는 0.0.0.0이 1개라서 굳이 줄 필요 없고 90만 넘으면 어떤 숫자를 주든 상관 없다.

새로 고친 방법

R2)
int s1/1
ip summary-address eigrp 100 0.0.0.0 0.0.0.0

R3)
int s1/1
ip summary-address eigrp 100 0.0.0.0 0.0.0.0 100

R4)
int s1/1
ip summary-address eigrp 100 0.0.0.0 0.0.0.0 100

결과

Untitled (3)

결과 해설

R2)
Untitled (4)

Untitled (5)
왼쪽 네트워크가 모두 안 보이는 것을 알 수 있음.

R4)
Untitled (6)

R5)
Untitled (7)
축약의 목적 : 라우팅 테이블이 확 비는 것을 볼 수 있다.
이것이 축약의 목적임.

R2에서는 굳이 수를 더해 줄 필요가 없다.
어차피 왼쪽에 네트워크를 다 가지고 있기 때문임.


Ex 02. EIGRP 축약

Untitled (8)

방법

R1)

int s1/0
ip summary-address eigrp 100 172.16.128.0 255.255.192.0
172.16.10/100100.0
172.16.10/000000.0
->172.16.10/000000=128.0
Sub:255.255.192.0



R2)

int s1/0
ip summary-address eigrp 100 172.16.32.0 255.255.255.0
172.16.32./01000001
172.16.32./10000001
->172.16.32.0
Sub:255.255.255.0



R3)

int s1/0
ip summary-address eigrp 100 172.16.64.0 255.255.192.0
172.16.01/100000.0
172.16.01/000000.0
->172.16.64.0
Sub:255.255.192.0



R4)

int s1/3
ip summary-address eigrp 100 172.16.0.0 255.255.0.0
172.16./100000000.0
172.16./001000000.0
172.16./010000000.0
->172.16.0.0
Sub:255.255.0.0

int s1/3
ip summary-address eigrp 100 1.1.0.0 255.255.192.0
1.1.00/001110.0
1.1.00/011000.0
1.1.00/100010.0
->1.1.0.0
Sub:255.255.192.0



결과

Untitled (9)

Untitled (10)

R3)
Untitled (11)

Untitled (12)

R5)
Untitled (13)
ex. R4에서 1.1.1.16? 같은 것들이 R5에서 보며 1.1.0.0으로 가는 것을 확인할 수 있음.

Untitled (14)
ping도 전부 감.


MD5 NEIGHBOR 인증

Untitled (15)

결과

R1)

Untitled (16)


EIGRP의 SIA 문제점 / Stub

Untitled (17)

Untitled (18)

기본구성)
Untitled (19)



DR / BDR / DROther

Untitled (20)
#show ip ospf neighbor 각각 라우터에서 네이버가 3개씩 나와야 함.

# show ip ospf neighbor 결과

Untitled (21)

Untitled (22)

Untitled (23)

Untitled (24)

라우팅을 효율적으로 만들기 위해

  • DR : 반장
  • BDR : 부반장
  • DROther : 나머지


DR, BDR, DROther이 선출되는 경우

  • Broadcast network : eth0/0, fa0/0
  • NonBroadcast network : frame-relay 환경에서 multipoing 인터페이스

중요한 것

  • DROther 간에는 Routing 교환을 하지 않음.
  • DROther 간에는 2WAY


Untitled (25)

# clear ip ospf process -> yes

결과

Untitled (26)