검색어 'wildcard mask'에 대한 1 개의 검색 결과

  1. 2008/05/21 [CCNA] 11일 - EIGRP by dhappy

# EIGRP 기본 설정 (클래스풀 형식)

    16bit
Router(config)# router eigrp [1-65535 Autonomous system number]
Router(config-router)# no auto-summary
Router(config-router)# network [로컬 네트워크] <- 클래스풀 형식

Router(config-router)# network A.0.0.0 <- A 클래스
Router(config-router)# network B.B.0.0 <- B 클래스
Router(config-router)# network C.C.C.0 <- C 클래스

R1(config)# router eigrp x
R1(config-router)# no auto-summary
R1(config-router)# network x.0.0.0
R1(config-router)# network 172.16.0.0

R2(config)# router eigrp x
R2(config-router)# no auto-summary
R2(config-router)# network x.0.0.0

R3(config)# router eigrp x
R3(config-router)# no auto-summary
R3(config-router)# network x.0.0.0
R3(config-router)# network 172.16.0.0

R1,R2,R3# show ip route

D


========================================================================================

# EIGRP 기본 설정 (와일드카드 마스크 사용)

    16bit
Router(config)# router eigrp [1-65535 Autonomous system number]
Router(config-router)# no auto-summary
Router(config-router)# network [로컬 네트워크][와일드카드 마스크]

R1(config)# no router eigrp x
R1(config)# router eigrp x
R1(config-router)# no auto-summary
R1(config-router)# network x.x.1.0 0.0.0.255
R1(config-router)# network x.x.12.0 0.0.0.255
R1(config-router)# network 172.16.1.0 0.0.0.255

R2(config)# no router eigrp x
R2(config)# router eigrp x
R2(config-router)# no auto-summary
R2(config-router)# network x.x.2.0 0.0.0.255
R2(config-router)# network x.x.12.0 0.0.0.255
R2(config-router)# network x.x.23.0 0.0.0.255

R3(config)# no router eigrp x
R3(config)# router eigrp x
R3(config-router)# no auto-summary
R3(config-router)# network x.x.3.0 0.0.0.255
R3(config-router)# network x.x.23.0 0.0.0.255
R3(config-router)# network 172.16.3.0 0.0.0.255

R1,R2,R3# show ip route

D


=========================================================================================


# 와일드 카드 마스크(Wildcard Mask) <- Page 226 ~ 227

 - 서브넷 마스크와 반대 개념으로 처리하는 32bit 체계 마스크

 - 공통 비트를 '0'으로 처리
 - 비공통 비트를 '1'로 처리

 - 맨 앞에 비트부터 '0'과 '1'이 불연속이 가능한 32bit 체계 마스크
 - 맨 앞에 비트부터 '0'과 '1'이 불연속이 가능하기 때문에 긴 설정을 짧게 설정할 수 있는 장점을 갖고 있다.

 - 사용 구간 : EIGRP, OSPF, ACL

서브넷 마스크  와일드카드 마스크

255.0.0.0  0.255.255.255
255.255.0.0  0.0.255.255
255.255.255.0  0.0.0.255
255.255.255.255  0.0.0.0
0.0.0.0   255.255.255.255
255.255.255.252  0.0.0.3
255.255.255.240  0.0.0.15
255.255.255.224  0.0.0.31
255.255.248.0  0.0.7.255

Ex1) 172.16.1.0/24 ~ 172.16.255.0/24 네트워크 중 짝수 네트워크만 정의하여라.

 172.16.2.0 255.255.255.0
 172.16.4.0 255.255.255.0
 172.16.6.0 255.255.255.0
~
 172.16.254.0 255.255.255.0
------------------------------ 128줄 설정

172.16.0000001 0.0
172.16.0000010 0.0
172.16.0000011 0.0
172.16.0000100 0.0
~
172.16.1111111 0.0
------------------------------------> 172.16.0.0 0.0.254.255
   0.  0.1111111 0.255 <- 0.0.254.255

Ex2) 172.16.1.0/24 ~ 172.16.255.0/24 네트워크 중 홀수 네트워크만 정의하여라.

172.16.0000000 1.0
172.16.0000001 1.0
172.16.0000010 1.0
172.16.0000011 1.0
~
172.16.1111111 1.0
------------------------------------> 172.16.1.0 0.0.254.255
   0.  0.1111111 0.255 <- 0.0.254.255

Ex3) 197.97.8.0/24 ~ 197.97.12.0/24 네트워크를 한줄로 설정하여라.

197.97.00001 000.0
197.97.00001 001.0
197.97.00001 010.0
197.97.00001 011.0
197.97.00001 100.0
----------------------------------> 197.97.8.0 0.0.7.255
   0.  0.00000 111.255 <- 0.0.7.255

Ex4) 128.28.1.0/24 ~ 128.28.15.0/24 네트워크 중 짝수 네트워크를 한줄로 정의하여라.

128.28.0000 001 0.0
128.28.0000 010 0.0
128.28.0000 011 0.0
128.28.0000 100 0.0
128.28.0000 101 0.0
128.28.0000 110 0.0
128.28.0000 111 0.0
------------------------------------> 128.28.0.0 0.0.14.255
   0.  0.0000 111 0.255 <- 0.0.14.255

Ex5) 128.28.1.0/24 ~ 128.28.15.0/24 네트워크 중 홀수 네트워크를 한줄로 정의하여라.

128.28.0000 000 1.0
128.28.0000 001 1.0
128.28.0000 010 1.0
128.28.0000 011 1.0
128.28.0000 100 1.0
128.28.0000 101 1.0
128.28.0000 110 1.0
128.28.0000 111 1.0
-------------------------------------> 128.28.10 0.0.14.255
   0.  0.0000 111 0.255 <- 0.0.14.255


Ex6) 192.168.1.15 ~ 192.168.1.29 IP 주소 설정을 한줄로 설정하여라.

192.168.1.000 01111
192.168.1.000 10000
192.168.1.000 10001
192.168.1.000 10010
192.168.1.000 10011
~
192.168.1.000 11101
--------------------------------> 192.168.1.0 0.0.0.31
   0.   0.0.000 11111 <- 0.0.0.31


=====================================================================================


# EIGRP (Enhanced Interior Gateway Routing Protocol) <- Page 151

 - Cisco에 개발하였으며, Cisco 장비에서만 지원되는 라우팅 프로토콜 (IGRP 동일)
 - 호환성에 대한 문제점
 - PDM 기능을 이용하여 IP, IPX, AppleTalk 라우팅이 가능하다.
 - EIGRP를 사용하는 네트워크 대상 : 대규모 네트워크

1) 클래스레스 라우팅 프로토콜 (Classless Routing Protocol) <- Page 117

 - 네트워크 상에 모든 서브넷들은 동일한 서브넷 마스크를 사용할 필요는 없다.
 - 다양한 서브넷 마스크 구간에서 라우팅 업데이트가 정상적으로 처리된다.
 - VLSM O, CIDR O

 - 라우팅 업데이트시 네트워크에 대한 서브넷 마스크를 포함한다.
 
 - 클래스 경계 사이에서 자동 클래스풀 요약을 실시한다. 단, 클래스가 단절된 비연속
    서브넷 구간에서는 자동 클래스풀 요약때문에 라우팅 업데이트가 차단되는 문제 발생

 - 해결책 : 자동 요약 해지 (no auto-summary)

 - RIPv2, EIGRP, BGPv4 <- 자동 요약 해지
 - OSPF, ISIS <- 수동 요약만 지원

2) 수동 요약 기능 <- Page 173 ~ 175

  - R2에서 수동 요약 설정 이전에 R3 라우팅 테이블

R3#show ip route eigrp
     172.16.0.0/24 is subnetted, 2 subnets
D       172.16.1.0 [90/2809856] via 13.13.23.2, 00:39:33, Serial1/1
     128.28.0.0/24 is subnetted, 5 subnets
D       128.28.12.0 [90/2809856] via 13.13.23.2, 00:06:33, Serial1/1
D       128.28.8.0 [90/2809856] via 13.13.23.2, 00:06:33, Serial1/1
D       128.28.9.0 [90/2809856] via 13.13.23.2, 00:06:33, Serial1/1
D       128.28.10.0 [90/2809856] via 13.13.23.2, 00:06:33, Serial1/1
D       128.28.11.0 [90/2809856] via 13.13.23.2, 00:06:33, Serial1/1
     13.0.0.0/24 is subnetted, 5 subnets
D       13.13.1.0 [90/2684416] via 13.13.23.2, 00:39:33, Serial1/1
D       13.13.2.0 [90/2172416] via 13.13.23.2, 00:39:33, Serial1/1
D       13.13.12.0 [90/2681856] via 13.13.23.2, 00:39:33, Serial1/1

  - R2에서 12 네트워크 경로 5개 수동 요약 실시

R2(config)# int s1/0
R2(config-if)# ip summary-address eigrp x 128.28.8.0 255.255.248.0

128.28.8.0/24 ~ 128.28.12.0/24

 128.28.00001 000.0
 128.28.00001 001.0
 128.28.00001 010.0
 128.28.00001 011.0
 128.28.00001 100.0
----------------------------------------> 128.28.8.0/21
255.255.11111 000.0 <- 255.255.248.0 <- /21

R3#show ip route eigrp
     172.16.0.0/24 is subnetted, 2 subnets
D       172.16.1.0 [90/2809856] via 13.13.23.2, 00:42:12, Serial1/1
     128.28.0.0/21 is subnetted, 1 subnets
D       128.28.8.0 [90/2809856] via 13.13.23.2, 00:00:04, Serial1/1
     13.0.0.0/24 is subnetted, 5 subnets
D       13.13.1.0 [90/2684416] via 13.13.23.2, 00:42:12, Serial1/1
D       13.13.2.0 [90/2172416] via 13.13.23.2, 00:42:12, Serial1/1
D       13.13.12.0 [90/2681856] via 13.13.23.2, 00:42:12, Serial1/1

3) EIGRP 동작 과정 (Advance Distance Vector)

 - 기존의 Distance Vector 라우팅 프로토콜(RIPv1, RIPv2, IGRP)에 대한 단점을 보완한
    고급 Distance Vector 라우팅 프로토콜이라고 한다.

 - 상대방 라우터와 'Hello' 패켓을 교환하여 인접 관계라는 네이버 관계를 성립한 이후에
    'Update 패켓'을 이용하여 라우팅 업데이트를 실시한다.

R2#
*Mar  1 00:09:57.907: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 13:
Neighbor 13.13.12.1 (Serial1/1) is up: new adjacency

 - 네이버 라우터로 부터 수신한 라우팅 업데이트 정보를 토폴로지 테이블을 구성하여
    별도로 관리한다. 그렇기 때문에 주기적인 라우팅 업데이트를 실시하지 않는다.

 - 각각의 라우터들은 토폴로지 정보를 기반으로 최적 경로(Successor)와
    최적 경로가 동작하지 않을때 바로 동작 가능한 후속 경로(Feasible Seccessor)를 선출한다.

 - 이때, 최적 경로 및 후속 경로는 Dual 알고리즘에 의해서 선출된다.

 - 선출된 최적 경로는 라우팅 테이블에 등록되어 동작하며, 만약 최적 경로가 동작하지
    않으면 대기하고 있던 후속 경로가 바로 등록되어 동작한다.

 - 후속 경로가 없는 상태에서 최적 경로가 동작하지 않거나, 토폴로지 정보가 변경되면
    Query 패켓을 이용하여 네이버 라우터에게 질의를 하며, 네이버 라우터는 Reply 패켓을
    이용하여 질의에 대한 응답을 실시한다.

 - 질의(Query) & 응답(Reply) 과정때문에 토폴로지 정보 갱신이 상당히 신속하다.

 - 네이버 라우터와 인접 관계를 유지하기 위해서 'Hello' 패켓을 주기적으로 교환한다.

4) EIGRP 3가지 테이블 유형 <- Pagr 154, 160~162

 1. EIGRP 네이버 테이블

  - 인접 관계를 성립한 네이버 라우터의 IP 주소 정보 및 상태를 관리한다.
  - 'show ip eigrp neighbors' 명령어 사용 (EIGRP 설정시 가장 먼저 하는 정보 확인이다.)

R1#show ip eigrp neighbors
IP-EIGRP neighbors for process 13
H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq
                                                  (sec)            (ms)          Cnt Num
0   13.13.12.2              Se1/0             14 01:10:59  498   2988  0  21

 2. EIGRP 토폴로지 테이블

  - 네이버 라우터로부터 수신한 라우팅 업데이트 정보(Update 패켓)를 관리 및 유지한다.
  - 또한, EIGRP에 포함된 로컬 네트워크 정보인 Connected 정보고 관리 및 유지한다.
  - 토폴로지 테이블이 있기때문에 주기적인 전체 라우팅 업데이트를 실시하지 않는다.
  - 토폴로지 정보를 기반으로 Dual 알고리즘을 이용하여 최적 경로와 후속 경로를 선출한다.
  - 'show ip eigrp topology' 명령어

R1#show ip eigrp topology
IP-EIGRP Topology Table for AS(13)/ID(1.1.1.1)

Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
       r - reply Status, s - sia Status

P 13.13.1.0/24, 1 successors, FD is 28160
        via Connected, FastEthernet0/0
P 13.13.2.0/24, 1 successors, FD is 2172416
        via 13.13.12.2 (2172416/28160), Serial1/0

   1. P - 경로 선출 계산이 완료된 상태
   2. A - 경로 선출 계산이 진행되는 상태
   3. 13.13.2.0/24 - 목적지 네트워크
   4. 1 successors - 목적지로 데이터 전송이 가능한 최적 경로 개수가 1개이다.
   5. FD is 2172416 - 최적 경로의 메트릭(출발지 라우터에서 목적지까지 EIGRP 메트릭)
   6. via 13.13.12.2 - 데이터가 전달되는 넥스트-홉 IP 주소
   7. (2172416/ - FD 메트릭(Feasible Distance) : 출발지 라우터에서 목적지까지 EIGRP 메트릭
   8. /28160) - AD 메트릭(Advertised Distance) : 넥스트-홉 라우터에서 목적지까지 EIGRP 메트릭
   9. Serial1/0 - 데이터가 출력되는 발신 인터페이스

 3. 라우팅 테이블

  - 선출된 최적 경로가 등록되어 동작하며, 만약 최적 경로가 동작하지 않으면 대기하고
    있던 후속 경로가 바로 등록되어 동작한다. 단, 후속 경로가 있는 경우에만 해당된다.
 
  - 'show ip route' & 'show ip route eigrp' 명령어 (D - EIGRP 경로, Dual의 약자)

R1#show ip route eigrp
     172.16.0.0/24 is subnetted, 2 subnets
D       172.16.3.0 [90/2809856] via 13.13.12.2, 01:24:06, Serial1/0
     13.0.0.0/24 is subnetted, 5 subnets
D       13.13.2.0 [90/2172416] via 13.13.12.2, 01:24:49, Serial1/0
D       13.13.3.0 [90/2684416] via 13.13.12.2, 01:24:10, Serial1/0
D       13.13.23.0 [90/2681856] via 13.13.12.2, 01:24:49, Serial1/0

5) Dual 알고리즘 동작 <- Page 156

 - EIGRP는 토폴로지 정보를 기반으로 Dual 알고리즘을 이용하여 최적 경로와 조건에 일치
   된다면 후속 경로를 선출한다. 즉, EIGRP는 후속 경로가 있다면 최적 경로가 장애가
   발생되면, 백업 경로로 대체할 수 있기때문에 장애 이전이 신속할 수 있다.

 - 최적 경로(Successor) : 출발지 라우터에서 목적지까지 가장 좋은 경로
 - 후속 경로(Feasible Successor) : 최적 경로가 동작하지 않을 경우, 바로 동작하는 백업 경로

 - FD 메트릭(Feasible Distance) : 출발지 라우터에서 목적지까지 실제 EIGRP 메트릭
 - AD 메트릭(Advertisde Distance) : 넥스트-홉 라우터에서 목적지까지 EIGRP 메트릭

 - 최적 경로 및 후속 경로 선출 과정

   1. 최적 경로는 목적지까지 FD 메트릭이 가장 작은 경로로 선출한다.
   2. 후속 경로는 다음과 같은 조건이 만족된 경우에만 선출한다.

 ① 최적 경로의 FD보다 작은 AD를 갖고 있는 경로
 ② 위의 '1번' 조건의 만족한 경로의 FD가 가장 작아야 한다.

Ex) 다음 토폴로지 정보 중 후속 경로가 있는 경우는 몇번인가?

Router# show ip eigrp topology

1) P 172.16.3.0/24, 1 successors, FD is 2809856
         via 31.31.12.2 (2809856/2297856), Serial1/0 <- 최적 경로
         via 31.31.13.3 (2993144/2809856), Serial1/1 <- 후속 경로 X

2) P 172.16.3.0/24, 1 successors, FD is 2809856
         via 31.31.12.2 (2809856/2297856), Serial1/0 <- 최적 경로
         via 31.31.13.3 (2993144/1809856), Serial1/1 <- 후속 경로

3) P 172.16.3.0/24, 1 successors, FD is 2809856
         via 31.31.12.2 (2809856/2297856), Serial1/0 <- 최적 경로
         via 31.31.13.3 (3193144/2909856), Serial1/1 <- 후속 경로 X

4) P 172.16.3.0/24, 2 successors, FD is 2809856 <- 균등 로드 분산
         via 31.31.12.2 (2809856/2297856), Serial1/0 <- 최적 경로
         via 31.31.13.3 (2809856/2297856), Serial1/1 <- 최적 경로

6) EIGRP 메트릭 (속도 개념 이용 : Bandwidth, Delay) <- Page 168

 - EIGRP Metric = (K1 x Bandwidth) + [(K2 x Bandwidth) / (256 - Load)] + (K3 x Delay)

R1#show ip protocols
Routing Protocol is "eigrp 13"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0

R1#show interface s1/0
Serial1/0 is up, line protocol is up
  Hardware is M4T
  Internet address is 13.13.12.1/24
  MTU 1500 bytes, BW 1544 Kbit, DLY 20000 usec,
     reliability 255/255, txload 1/255, rxload 1/255

 - EIGRP Metric = EIGRP Bandwidth + EIGRP Delay
 - EIGRP Bandwidth = (10^7 / 목적지까지 가장 작은 Bandwidth) x 256
 - EIGRP Delay = (목적지까지 합산한 Delay / 10) x 256

Ex) A------------B--------------C-------------| 192.168.3.0/24
          100M          10M        100M
           2000          2000        2000

    1. A에서 192.168.3.0/24까지 FD 메트릭? [(10^7 / 10000000) x 256] + [(6000 / 10) x 256]
    2. A에서 192.168.3.0/24까지 AD 메트릭? [(10^7 / 10000000) x 256] + [(4000 / 10) x 256]

7) EIGRP 5가지 패켓 유형 <- Page 155

  1. Hello 패켓

    - 인접 관계라는 네이버 관계를 성립할때 사용하며, 네이버 관계를 유지할때 사용한다.
    - Hello 교환 주기 : 5초, Hold 주기 : 15초
    - 멀티케스트 224.0.0.10
    - Hello 패켓 내용 : AS 주소, K 상수(기본값 : K1=1, K2=0, K3=1, K4=0, K5=0) <- 인접 조건

  2. Update 패켓

    - 라우팅 정보를 포함한 패켓이며, 네이버 라우터에 라우팅 업데이트를 전송할때 사용한다.
    - WAN Point-to-Point 구간 : 유니케스트 전송
    - Broadcast 구간 : 멀티케스트 224.0.0.10
  
  3. Query 패켓

    - 후속 경로가 없거나, 토폴로지 정보가 변경되면 네이버 라우터에게 대체 경로 여부를
      알기위해서 질의할때 사용한다.
    - WAN Point-to-Point 구간 : 유니케스트 전송
    - Broadcast 구간 : 멀티케스트 224.0.0.10

  4. Reply 패켓

    - Query 패켓에 대한 응답으로 대체 경로 여부를 알려줄때 사용한다.
    - 모든 구간 : 유니케스트 전송

  5. Ack 패켓

    - Update, Query, Reply 패켓에 대한 수신 확인 응답을 할때 사용한다.
    - 모든 구간 : 유니케스트 전송

R1(config)# router eigrp x
R1(config-router)# passive-interface fa0/0
R1(config-router)# passive-interface lo172
R1(config-router)# passive-interface lo128

[Hello 패켓 교환 확인]

R1# debug ip packet <- 라우터로 나가고/들어오는 패켓 출발지/목적지 주소 확인
IP packet debugging is on
R1#
R1# debug eigrp packet hello
EIGRP Packets debugging is on
    (HELLO)

R1#
*Mar  1 02:26:39.827: IP: s=13.13.12.1 (local), d=224.0.0.10 (Serial1/0), len 60, sending broad/multicast
*Mar  1 02:26:39.831: EIGRP: Sending HELLO on Serial1/0
*Mar  1 02:26:39.835:   AS 13, Flags 0x0, Seq 0/0 idbQ 0/0 iidbQ un/rely 0/0
R1#
*Mar  1 02:26:41.203: IP: s=13.13.12.2 (Serial1/0), d=224.0.0.10, len 60, rcvd 2
*Mar  1 02:26:41.211: EIGRP: Received HELLO on Serial1/0 nbr 13.13.12.2
*Mar  1 02:26:41.215:   AS 13, Flags 0x0, Seq 0/0 idbQ 0/0 iidbQ un/rely 0/0 peerQ un/rely 0/0
R1#
R1#undebug all
All possible debugging has been turned off

[Update 패켓, Ack 패켓 교환 확인]

R1#debug eigrp packet update ack
EIGRP Packets debugging is on
    (UPDATE, ACK)

R2(config)# int lo 200
R2(config-if)# ip address 200.200.200.1 255.255.255.0
R2(config-if)# exit
R2(config)# router eigrp x
R2(config-router)# network 200.200.200.0 0.0.0.255

R1#
*Mar  1 02:31:30.819: EIGRP: Received UPDATE on Serial1/0 nbr 13.13.12.2
*Mar  1 02:31:30.823:   AS 13, Flags 0x0, Seq 25/12 idbQ 0/0 iidbQ un/rely 0/0 peerQ un/rely 0/0
*Mar  1 02:31:30.827: EIGRP: Enqueueing ACK on Serial1/0 nbr 13.13.12.2
*Mar  1 02:31:30.831:   Ack seq 25 iidbQ un/rely 0/0 peerQ un/rely 1/0
*Mar  1 02:31:30.839: EIGRP: Sending ACK on Serial1/0 nbr 13.13.12.2
*Mar  1 02:31:30.839:   AS 13, Flags 0x0, Seq 0/25 idbQ 0/0 iidbQ un/rely 0/0 peerQ un/rely 1/0
*Mar  1 02:31:30.859: EIGRP: Enqueueing UPDATE on Serial1/0 iidbQ un/rely 0/1 serno 15-15
*Mar  1 02:31:30.863: EIGRP: Enqueueing UPDATE on Serial1/0 nbr 13.13.12.2 iidbQ un/rely 0/0 peerQ un/rely 0/0
R1# serno 15-15
R1#undebug all
All possible debugging has been turned off
R1#

[Query 패켓, Reply 패켓, Ack 패켓 교환 확인]

R1#debug eigrp packet query reply ack
EIGRP Packets debugging is on
    (QUERY, REPLY, ACK)

R2(config)# int lo 200
R2(config-if)# shutdown

R1#
*Mar  1 02:34:53.435: EIGRP: Received QUERY on Serial1/0 nbr 13.13.12.2
*Mar  1 02:34:53.439:   AS 13, Flags 0x0, Seq 26/12 idbQ 0/0 iidbQ un/rely 0/0 peerQ un/rely 0/0
*Mar  1 02:34:53.443: EIGRP: Enqueueing ACK on Serial1/0 nbr 13.13.12.2
*Mar  1 02:34:53.447:   Ack seq 26 iidbQ un/rely 0/0 peerQ un/rely 1/0
*Mar  1 02:34:53.455: EIGRP: Sending ACK on Serial1/0 nbr 13.13.12.2
*Mar  1 02:34:53.455:   AS 13, Flags 0x0, Seq 0/26 idbQ 0/0 iidbQ un/rely 0/0 peerQ un/rely 1/0
*Mar  1 02:34:53.475: EIGRP: Enqueueing REPLY on Serial1/0 nbr 13.13.12.2 iidbQ un/rely 0/1 peerQ un/rely 0/0 serno 16-16
*Mar  1 02:34:53.487: EIGRP: Sending REPLY on Serial1/0 nbr 13.13.12.2
R1#
*Mar  1 02:34:53.491:   AS 13, Flags 0x0, Seq 14/26 idbQ 0/0 iidbQ un/rely 0/0 peerQ un/rely 0/1 serno 16-16
*Mar  1 02:34:53.555: EIGRP: Received ACK on Serial1/0 nbr 13.13.12.2
*Mar  1 02:34:53.559:   AS 13, Flags 0x0, Seq 0/14 idbQ 0/0 iidbQ un/rely 0/0 peerQ un/rely 0/1
R1#
R1#undebug all
All possible debugging has been turned off

[Update 패켓 내용]

R1#debug ip eigrp
IP-EIGRP Route Events debugging is on
R1#

R2(config)# int lo 200
R2(config-if)# no shutdown

R1#
*Mar  1 02:37:36.847: IP-EIGRP(Default-IP-Routing-Table:13): Processing incoming UPDATE packet
*Mar  1 02:37:36.851: IP-EIGRP(Default-IP-Routing-Table:13): Int 200.200.200.0/24 M 2297856 - 1657856 640000 SM 128256 - 256 128000
*Mar  1 02:37:36.855: IP-EIGRP(Default-IP-Routing-Table:13): route installed for 200.200.200.0  ()
R1#

[Query 패켓 내용]

R2(config)# int lo 200
R2(config-if)# shutdown

R1#
*Mar  1 02:39:50.583: IP-EIGRP(Default-IP-Routing-Table:13): Processing incoming QUERY packet
*Mar  1 02:39:50.587: IP-EIGRP(Default-IP-Routing-Table:13): Int 200.200.200.0/24 M 4294967295 - 0 4294967295 SM 4294967295 - 0 4294967295
*Mar  1 02:39:50.595: IP-EIGRP(Default-IP-Routing-Table:13): 200.200.200.0/24 routing table not updated thru 13.13.12.2
*Mar  1 02:39:50.619: IP-EIGRP(Default-IP-Routing-Table:13): 200.200.200.0/24 - not in IP routing table
*Mar  1 02:39:50.623: IP-EIGRP(Default-IP-Routing-Table:13): Int 200.200.200.0/24 metric 4294967295 - 1657856 4294967295

8) EIGRP 기본 신뢰도 : 90

9) 균등 로드 분산 : 기본 4개 ~ 최대 6개 지원

10) 비균등 로드 분산 : 기본 4개 ~ 최대 6개 지원

R1(config)# router eigrp x
R1(config-router)# variance [1~128]



2008/05/21 22:46 2008/05/21 22:46
dhappy 이 작성.