]> git.proxmox.com Git - mirror_frr.git/blob - eigrpd/EIGRP-MIB.txt
eigrp: Initial Commit
[mirror_frr.git] / eigrpd / EIGRP-MIB.txt
1 CISCO-EIGRP-MIB DEFINITIONS ::= BEGIN
2
3 IMPORTS
4 MODULE-IDENTITY,
5 OBJECT-TYPE,
6 NOTIFICATION-TYPE,
7 Unsigned32,
8 Gauge32,
9 Counter32,
10 Counter64
11 FROM SNMPv2-SMI
12 TruthValue,
13 TEXTUAL-CONVENTION
14 FROM SNMPv2-TC
15 SnmpAdminString
16 FROM SNMP-FRAMEWORK-MIB
17 MODULE-COMPLIANCE,
18 OBJECT-GROUP,
19 NOTIFICATION-GROUP
20 FROM SNMPv2-CONF
21 ciscoMgmt
22 FROM CISCO-SMI
23 InterfaceIndexOrZero,
24 ifIndex
25 FROM IF-MIB
26 InetAddressType,
27 InetAddress,
28 InetAddressPrefixLength
29 FROM INET-ADDRESS-MIB;
30
31 ciscoEigrpMIB MODULE-IDENTITY
32 LAST-UPDATED "200411160000Z"
33 ORGANIZATION "Cisco Systems, Inc."
34 CONTACT-INFO "Cisco Systems
35 Customer Service
36
37 Postal: 170 W Tasman Drive
38 San Jose, CA 95134
39 USA
40
41 Tel: +1 800 553-NETS
42
43 E-mail: cs-eigrp@cisco.com"
44 DESCRIPTION
45 "Enhanced Interior Gateway Protocol (EIGRP) is a Cisco
46 proprietary distance vector routing protocol. It is based on
47 the Diffusing Update Algorithm (DUAL), which is a method of
48 finding loop-free paths through a network. Directly
49 connected routers running EIGRP form neighbor adjacencies in
50 order to propagate best-path and alternate-path routing
51 information for configured and learned routes.
52
53 The tables defined within the MIB are closely aligned with how
54 the router command-line interface for EIGRP displays
55 information on EIGRP configurations, i.e., the topology table
56 contains objects associated with the EIGRP topology commands,
57 and the peer table contains objects associated withe EIGRP
58 neighbor commands, etc.
59
60 There are five main tables within this mib:
61
62 EIGRP VPN table
63 Contains information regarding which virtual private
64 networks (VPN) are configured with EIGRP.
65
66 EIGRP traffic statistics table
67 Contains counter & statistcs regarding specific types of
68 EIGRP packets sent and related collective information
69 per VPN and per autonomous system (AS).
70
71 EIGRP topology table
72 Contains information regarding EIGRP routes received in
73 updates and originated locally. EIGRP sends and
74 receives routing updates from adjacent routers running
75 EIGRP with which it formed a peer relationship.
76
77 EIGRP peer (neighbor) table
78 Contains information about neighbor EIGRP routers with
79 which peer adjacencies have been established. EIGRP
80 uses a Hello protocol to form neighbor relationships
81 with directly connected routers also running EIGRP.
82
83 EIGRP interfaces table
84 Contains information and statistics on each of the
85 interfaces on the router over which EIGRP has been
86 configured to run."
87
88
89 REVISION "200411160000Z"
90 DESCRIPTION
91 "Initial version of the MIB module."
92 ::= { ciscoMgmt 449 }
93
94 --
95 -- Textual Conventions
96 --
97
98 EigrpUpTimeString ::= TEXTUAL-CONVENTION
99 DISPLAY-HINT "8a"
100 STATUS current
101 DESCRIPTION
102 "Specifies a timer value in days, hours, minutes,
103 and seconds in ASCII format.
104
105 If the up time is less than 24 hours, the number
106 of days will not be reflected and the string will
107 be formatted like this: 'hh:mm:ss', reflecting
108 hours, minutes, and seconds.
109
110 If the up time is greater than 24 hours, EIGRP is
111 less precise and the minutes and seconds are not
112 reflected. Instead only the days and hours are shown
113 and the string will be formatted like this: 'xxxdxxh'."
114 SYNTAX OCTET STRING (SIZE (0..8))
115
116 EigrpVersionString ::= TEXTUAL-CONVENTION
117 DISPLAY-HINT "1d.1d/1d.1d"
118 STATUS current
119 DESCRIPTION
120 "Specifies an ASCII string representing the IOS major
121 and minor version followed by the EIGRP major and minor
122 version."
123 SYNTAX OCTET STRING (SIZE (0..9))
124
125 --
126 -- Objects
127 --
128
129 cEigrpMIBNotifications OBJECT IDENTIFIER ::= { ciscoEigrpMIB 0 }
130 cEigrpMIBObjects OBJECT IDENTIFIER ::= { ciscoEigrpMIB 1 }
131 cEigrpMIBConformance OBJECT IDENTIFIER ::= { ciscoEigrpMIB 2 }
132 cEigrpVpnInfo OBJECT IDENTIFIER ::= { cEigrpMIBObjects 1 }
133 cEigrpAsInfo OBJECT IDENTIFIER ::= { cEigrpMIBObjects 2 }
134 cEigrpTopologyInfo OBJECT IDENTIFIER ::= { cEigrpMIBObjects 3 }
135 cEigrpPeerInfo OBJECT IDENTIFIER ::= { cEigrpMIBObjects 4 }
136 cEigrpInterfaceInfo OBJECT IDENTIFIER ::= { cEigrpMIBObjects 5 }
137
138 -- EIGRP VPN Base Table definition
139
140 cEigrpVpnTable OBJECT-TYPE
141 SYNTAX SEQUENCE OF CEigrpVpnEntry
142 MAX-ACCESS not-accessible
143 STATUS current
144 DESCRIPTION
145 "This table contains information on those VPN's configured
146 to run EIGRP. The VPN creation on a router is independent
147 of the routing protocol to be used over it. A VPN is
148 given a name and has a dedicated routing table associated
149 with it. This routing table is identified internally
150 by a unique integer value."
151 ::= { cEigrpVpnInfo 1 }
152
153 cEigrpVpnEntry OBJECT-TYPE
154 SYNTAX CEigrpVpnEntry
155 MAX-ACCESS not-accessible
156 STATUS current
157 DESCRIPTION
158 "Information relating to a single VPN which is configured
159 to run EIGRP."
160 INDEX { cEigrpVpnId }
161 ::= { cEigrpVpnTable 1 }
162
163 CEigrpVpnEntry ::=
164 SEQUENCE {
165 cEigrpVpnId Unsigned32,
166 cEigrpVpnName SnmpAdminString
167 }
168
169 cEigrpVpnId OBJECT-TYPE
170 SYNTAX Unsigned32
171 MAX-ACCESS not-accessible
172 STATUS current
173 DESCRIPTION
174 "The unique VPN identifier. This is a unique integer
175 relative to all other VPN's defined on the router. It
176 also identifies internally the routing table instance."
177 ::= { cEigrpVpnEntry 1 }
178
179 cEigrpVpnName OBJECT-TYPE
180 SYNTAX SnmpAdminString
181 MAX-ACCESS read-only
182 STATUS current
183 DESCRIPTION
184 "The name given to the VPN."
185 ::= { cEigrpVpnEntry 2 }
186
187 -- EIGRP Traffic Stats table definition
188
189 cEigrpTraffStatsTable OBJECT-TYPE
190 SYNTAX SEQUENCE OF CEigrpTraffStatsEntry
191 MAX-ACCESS not-accessible
192 STATUS current
193 DESCRIPTION
194 "Table of EIGRP traffic statistics and information
195 associated with all EIGRP autonomous systems."
196 ::= { cEigrpAsInfo 1 }
197
198 cEigrpTraffStatsEntry OBJECT-TYPE
199 SYNTAX CEigrpTraffStatsEntry
200 MAX-ACCESS not-accessible
201 STATUS current
202 DESCRIPTION
203 "The set of statistics and information for a single EIGRP
204 Autonomous System."
205 INDEX { cEigrpVpnId, cEigrpAsNumber }
206 ::= { cEigrpTraffStatsTable 1 }
207
208 CEigrpTraffStatsEntry ::=
209 SEQUENCE {
210 cEigrpAsNumber Unsigned32,
211 cEigrpNbrCount Unsigned32,
212 cEigrpHellosSent Counter32,
213 cEigrpHellosRcvd Counter32,
214 cEigrpUpdatesSent Counter32,
215 cEigrpUpdatesRcvd Counter32,
216 cEigrpQueriesSent Counter32,
217 cEigrpQueriesRcvd Counter32,
218 cEigrpRepliesSent Counter32,
219 cEigrpRepliesRcvd Counter32,
220 cEigrpAcksSent Counter32,
221 cEigrpAcksRcvd Counter32,
222 cEigrpInputQHighMark Unsigned32,
223 cEigrpInputQDrops Counter32,
224 cEigrpSiaQueriesSent Counter32,
225 cEigrpSiaQueriesRcvd Counter32,
226 cEigrpAsRouterIdType InetAddressType,
227 cEigrpAsRouterId InetAddress,
228 cEigrpTopoRoutes Counter32,
229 cEigrpHeadSerial Counter64,
230 cEigrpNextSerial Counter64,
231 cEigrpXmitPendReplies Unsigned32,
232 cEigrpXmitDummies Unsigned32
233 }
234
235 cEigrpAsNumber OBJECT-TYPE
236 SYNTAX Unsigned32
237 MAX-ACCESS not-accessible
238 STATUS current
239 DESCRIPTION
240 "The Autonomous System number which is unique integer
241 per VPN."
242 ::= { cEigrpTraffStatsEntry 1 }
243
244 cEigrpNbrCount OBJECT-TYPE
245 SYNTAX Unsigned32
246 MAX-ACCESS read-only
247 STATUS current
248 DESCRIPTION
249 "The total number of live EIGRP neighbors formed on all
250 interfaces whose IP addresses fall under networks configured
251 in the EIGRP AS."
252 ::= { cEigrpTraffStatsEntry 2 }
253
254 cEigrpHellosSent OBJECT-TYPE
255 SYNTAX Counter32
256 MAX-ACCESS read-only
257 STATUS current
258 DESCRIPTION
259 "The total number Hello packets that have been sent to all
260 EIGRP neighbors formed on all interfaces whose IP addresses
261 fall under networks configured for the EIGRP AS."
262 ::= { cEigrpTraffStatsEntry 3 }
263
264 cEigrpHellosRcvd OBJECT-TYPE
265 SYNTAX Counter32
266 MAX-ACCESS read-only
267 STATUS current
268 DESCRIPTION
269 "The total number Hello packets that have been received
270 from all EIGRP neighbors formed on all interfaces whose IP
271 addresses fall under networks configured for the
272 EIGRP AS."
273 ::= { cEigrpTraffStatsEntry 4 }
274
275 cEigrpUpdatesSent OBJECT-TYPE
276 SYNTAX Counter32
277 MAX-ACCESS read-only
278 STATUS current
279 DESCRIPTION
280 "The total number routing update packets that have been
281 sent to all EIGRP neighbors formed on all interfaces whose
282 IP addresses fall under networks configured for the
283 EIGRP AS."
284 ::= { cEigrpTraffStatsEntry 5 }
285
286 cEigrpUpdatesRcvd OBJECT-TYPE
287 SYNTAX Counter32
288 MAX-ACCESS read-only
289 STATUS current
290 DESCRIPTION
291 "The total number routing update packets that have been
292 received from all EIGRP neighbors formed on all interfaces
293 whose IP addresses fall under networks configured for the
294 EIGRP AS."
295 ::= { cEigrpTraffStatsEntry 6 }
296
297 cEigrpQueriesSent OBJECT-TYPE
298 SYNTAX Counter32
299 MAX-ACCESS read-only
300 STATUS current
301 DESCRIPTION
302 "The total number alternate route query packets that have
303 been sent to all EIGRP neighbors formed on all interfaces
304 whose IP addresses fall under networks configured for the
305 EIGRP AS."
306 ::= { cEigrpTraffStatsEntry 7 }
307
308 cEigrpQueriesRcvd OBJECT-TYPE
309 SYNTAX Counter32
310 MAX-ACCESS read-only
311 STATUS current
312 DESCRIPTION
313 "The total number alternate route query packets that
314 have been received from all EIGRP neighbors formed on
315 all interfaces whose IP addresses fall under networks
316 configured for the EIGRP AS."
317 ::= { cEigrpTraffStatsEntry 8 }
318
319 cEigrpRepliesSent OBJECT-TYPE
320 SYNTAX Counter32
321 MAX-ACCESS read-only
322 STATUS current
323 DESCRIPTION
324 "The total number query reply packets that have been sent
325 to all EIGRP neighbors formed on all interfaces whose IP
326 addresses fall under networks configured for the
327 EIGRP AS."
328 ::= { cEigrpTraffStatsEntry 9 }
329
330 cEigrpRepliesRcvd OBJECT-TYPE
331 SYNTAX Counter32
332 MAX-ACCESS read-only
333 STATUS current
334 DESCRIPTION
335 "The total number query reply packets that have been
336 received from all EIGRP neighbors formed on all interfaces
337 whose IP addresses fall under networks configured for the
338 EIGRP AS."
339 ::= { cEigrpTraffStatsEntry 10 }
340
341 cEigrpAcksSent OBJECT-TYPE
342 SYNTAX Counter32
343 MAX-ACCESS read-only
344 STATUS current
345 DESCRIPTION
346 "The total number packet acknowledgements that have been
347 sent to all EIGRP neighbors formed on all interfaces whose
348 IP addresses fall under networks configured for the
349 EIGRP AS."
350 ::= { cEigrpTraffStatsEntry 11 }
351
352 cEigrpAcksRcvd OBJECT-TYPE
353 SYNTAX Counter32
354 MAX-ACCESS read-only
355 STATUS current
356 DESCRIPTION
357 "The total number packet acknowledgements that have been
358 received from all EIGRP neighbors formed on all interfaces
359 whose IP addresses fall under networks configured for the
360 EIGRP AS."
361 ::= { cEigrpTraffStatsEntry 12 }
362
363 cEigrpInputQHighMark OBJECT-TYPE
364 SYNTAX Unsigned32
365 MAX-ACCESS read-only
366 STATUS current
367 DESCRIPTION
368 "The highest number of EIGRP packets in the input queue
369 waiting to be processed internally addressed to this
370 AS."
371 ::= { cEigrpTraffStatsEntry 13 }
372
373 cEigrpInputQDrops OBJECT-TYPE
374 SYNTAX Counter32
375 MAX-ACCESS read-only
376 STATUS current
377 DESCRIPTION
378 "The number of EIGRP packets dropped from the input
379 queue due to it being full within the AS."
380 ::= { cEigrpTraffStatsEntry 14 }
381
382 cEigrpSiaQueriesSent OBJECT-TYPE
383 SYNTAX Counter32
384 MAX-ACCESS read-only
385 STATUS current
386 DESCRIPTION
387 "The total number of Stuck-In-Active (SIA) query packets
388 sent to all EIGRP neighbors formed on all interfaces whose
389 IP addresses fall under networks configured for the
390 EIGRP AS."
391 ::= { cEigrpTraffStatsEntry 15 }
392
393 cEigrpSiaQueriesRcvd OBJECT-TYPE
394 SYNTAX Counter32
395 MAX-ACCESS read-only
396 STATUS current
397 DESCRIPTION
398 "The total number of Stuck-In-Active (SIA) query packets
399 received from all EIGRP neighbors formed on all interfaces
400 whose IP addresses fall under networks configured for the
401 EIGRP AS."
402 ::= { cEigrpTraffStatsEntry 16 }
403
404 cEigrpAsRouterIdType OBJECT-TYPE
405 SYNTAX InetAddressType
406 MAX-ACCESS read-only
407 STATUS current
408 DESCRIPTION
409 "The format of the router-id configured or automatically
410 selected for the EIGRP AS."
411 ::= { cEigrpTraffStatsEntry 17 }
412
413 cEigrpAsRouterId OBJECT-TYPE
414 SYNTAX InetAddress
415 MAX-ACCESS read-only
416 STATUS current
417 DESCRIPTION
418 "The router-id configured or automatically selected for the
419 EIGRP AS. Each EIGRP routing process has a unique
420 router-id selected from each autonomous system configured.
421 The format is governed by object cEigrpAsRouterIdType."
422 ::= { cEigrpTraffStatsEntry 18 }
423
424 cEigrpTopoRoutes OBJECT-TYPE
425 SYNTAX Counter32
426 MAX-ACCESS read-only
427 STATUS current
428 DESCRIPTION
429 "The total number of EIGRP derived routes currently existing
430 in the topology table for the AS."
431 ::= { cEigrpTraffStatsEntry 19 }
432
433 cEigrpHeadSerial OBJECT-TYPE
434 SYNTAX Counter64
435 MAX-ACCESS read-only
436 STATUS current
437 DESCRIPTION
438 "Routes in a topology table for an AS are assigned serial
439 numbers and are sequenced internally as they are inserted
440 and deleted. The serial number of the first route in
441 that internal sequence is called the head serial number.
442 Each AS has its own topology table, and its own serial
443 number space, each of which begins with the value 1.
444 A serial number of zero implies that there are no routes
445 in the topology."
446 ::= { cEigrpTraffStatsEntry 20 }
447
448 cEigrpNextSerial OBJECT-TYPE
449 SYNTAX Counter64
450 MAX-ACCESS read-only
451 STATUS current
452 DESCRIPTION
453 "The serial number that would be assigned to the next new
454 or changed route in the topology table for the AS."
455 ::= { cEigrpTraffStatsEntry 21 }
456
457 cEigrpXmitPendReplies OBJECT-TYPE
458 SYNTAX Unsigned32
459 MAX-ACCESS read-only
460 STATUS current
461 DESCRIPTION
462 "When alternate route query packets are sent to adjacent
463 EIGRP peers in an AS, replies are expected. This object
464 is the total number of outstanding replies expected to
465 queries that have been sent to peers in the current AS.
466 It remains at zero most of the time until an EIGRP route
467 becomes active."
468 ::= { cEigrpTraffStatsEntry 22 }
469
470 cEigrpXmitDummies OBJECT-TYPE
471 SYNTAX Unsigned32
472 MAX-ACCESS read-only
473 STATUS current
474 DESCRIPTION
475 "A dummy is a temporary internal entity used as a place
476 holder in the topology table for an AS. They are not
477 transmitted in routing updates. This is the total
478 number currently in existence associated with the AS."
479 ::= { cEigrpTraffStatsEntry 23 }
480
481 -- EIGRP topology table definition
482
483 cEigrpTopoTable OBJECT-TYPE
484 SYNTAX SEQUENCE OF CEigrpTopoEntry
485 MAX-ACCESS not-accessible
486 STATUS current
487 DESCRIPTION
488 "The table of EIGRP routes and their associated
489 attributes for an Autonomous System (AS) configured
490 in a VPN is called a topology table. All route entries in
491 the topology table will be indexed by IP network type,
492 IP network number and network mask (prefix) size."
493 ::= { cEigrpTopologyInfo 1 }
494
495 cEigrpTopoEntry OBJECT-TYPE
496 SYNTAX CEigrpTopoEntry
497 MAX-ACCESS not-accessible
498 STATUS current
499 DESCRIPTION
500 "The entry for a single EIGRP topology table in the given
501 AS."
502 INDEX { cEigrpVpnId, cEigrpAsNumber, cEigrpDestNetType,
503 cEigrpDestNet, cEigrpDestNetPrefixLen }
504 ::= { cEigrpTopoTable 1 }
505
506 CEigrpTopoEntry ::=
507 SEQUENCE {
508 cEigrpDestNetType InetAddressType,
509 cEigrpDestNet InetAddress,
510 cEigrpDestNetPrefixLen InetAddressPrefixLength,
511 cEigrpActive TruthValue,
512 cEigrpStuckInActive TruthValue,
513 cEigrpDestSuccessors Unsigned32,
514 cEigrpFdistance Unsigned32,
515 cEigrpRouteOriginType SnmpAdminString,
516 cEigrpRouteOriginAddrType InetAddressType,
517 cEigrpRouteOriginAddr InetAddress,
518 cEigrpNextHopAddressType InetAddressType,
519 cEigrpNextHopAddress InetAddress,
520 cEigrpNextHopInterface SnmpAdminString,
521 cEigrpDistance Unsigned32,
522 cEigrpReportDistance Unsigned32
523 }
524
525 cEigrpDestNetType OBJECT-TYPE
526 SYNTAX InetAddressType
527 MAX-ACCESS not-accessible
528 STATUS current
529 DESCRIPTION
530 "The format of the destination IP network number for
531 a single route in the topology table in the AS specified
532 in cEigrpDestNet."
533 ::= { cEigrpTopoEntry 1 }
534
535 cEigrpDestNet OBJECT-TYPE
536 SYNTAX InetAddress
537 MAX-ACCESS not-accessible
538 STATUS current
539 DESCRIPTION
540 "The destination IP network number for a single route in
541 the topology table in the AS. The format is governed
542 by object cEigrpDestNetType."
543 ::= { cEigrpTopoEntry 2 }
544
545 cEigrpDestNetPrefixLen OBJECT-TYPE
546 SYNTAX InetAddressPrefixLength
547 MAX-ACCESS not-accessible
548 STATUS current
549 DESCRIPTION
550 "The prefix length associated with the destination IP
551 network address for a single route in the topology
552 table in the AS. The format is governed by the object
553 cEigrpDestNetType."
554 ::= { cEigrpTopoEntry 4 }
555
556 cEigrpActive OBJECT-TYPE
557 SYNTAX TruthValue
558 MAX-ACCESS read-only
559 STATUS current
560 DESCRIPTION
561 "A value of true(1) indicates the route to the
562 destination network has failed and an active (query)
563 search for an alternative path is in progress. A value
564 of false(2) indicates the route is stable (passive)."
565 ::= { cEigrpTopoEntry 5 }
566
567 cEigrpStuckInActive OBJECT-TYPE
568 SYNTAX TruthValue
569 MAX-ACCESS read-only
570 STATUS current
571 DESCRIPTION
572 "A value of true(1) indicates that that this route which is
573 in active state (cEigrpActive = true(1)) has not received
574 any replies to queries for alternate paths, and a second
575 EIGRP route query, called a stuck-in-active query, has
576 now been sent."
577 ::= { cEigrpTopoEntry 6 }
578
579 cEigrpDestSuccessors OBJECT-TYPE
580 SYNTAX Unsigned32
581 MAX-ACCESS read-only
582 STATUS current
583 DESCRIPTION
584 "A successor is the next routing hop for a path to the
585 destination IP network number for a single route in the
586 topology table in the AS. There can be several
587 potential successors if there are multiple paths to the
588 destination. This is the total number of successors for
589 a topology entry."
590 ::= { cEigrpTopoEntry 7 }
591
592 cEigrpFdistance OBJECT-TYPE
593 SYNTAX Unsigned32
594 MAX-ACCESS read-only
595 STATUS current
596 DESCRIPTION
597 "The feasibility (best) distance is the minimum distance
598 from this router to the destination IP network in
599 this topology entry. The feasibility distance is
600 used in determining the best successor for a path to the
601 destination network."
602 ::= { cEigrpTopoEntry 8 }
603
604 cEigrpRouteOriginType OBJECT-TYPE
605 SYNTAX SnmpAdminString
606 MAX-ACCESS read-only
607 STATUS current
608 DESCRIPTION
609 "This is a text string describing the internal origin
610 of the EIGRP route represented by the topology entry."
611 ::= { cEigrpTopoEntry 9 }
612
613 cEigrpRouteOriginAddrType OBJECT-TYPE
614 SYNTAX InetAddressType
615 MAX-ACCESS read-only
616 STATUS current
617 DESCRIPTION
618 "The format of the IP address defined as the origin of
619 this topology route entry."
620 ::= { cEigrpTopoEntry 10 }
621
622 cEigrpRouteOriginAddr OBJECT-TYPE
623 SYNTAX InetAddress
624 MAX-ACCESS read-only
625 STATUS current
626 DESCRIPTION
627 "If the origin of the topology route entry is external
628 to this router, then this object is the IP address
629 of the router from which it originated. The format
630 is governed by object cEigrpRouteOriginAddrType."
631 ::= { cEigrpTopoEntry 11 }
632
633 cEigrpNextHopAddressType OBJECT-TYPE
634 SYNTAX InetAddressType
635 MAX-ACCESS read-only
636 STATUS current
637 DESCRIPTION
638 "The format of the next hop IP address for the route
639 represented by the topology entry."
640 ::= { cEigrpTopoEntry 12 }
641
642 cEigrpNextHopAddress OBJECT-TYPE
643 SYNTAX InetAddress
644 MAX-ACCESS read-only
645 STATUS current
646 DESCRIPTION
647 "This is the next hop IP address for the route represented
648 by the topology entry. The next hop is where
649 network traffic will be routed to in order to reach
650 the destination network for this topology entry. The
651 format is governed by cEigrpNextHopAddressType."
652 ::= { cEigrpTopoEntry 13 }
653
654 cEigrpNextHopInterface OBJECT-TYPE
655 SYNTAX SnmpAdminString
656 MAX-ACCESS read-only
657 STATUS current
658 DESCRIPTION
659 "The interface through which the next hop IP address
660 is reached to send network traffic to the destination
661 network represented by the topology entry."
662 ::= { cEigrpTopoEntry 14 }
663
664 cEigrpDistance OBJECT-TYPE
665 SYNTAX Unsigned32
666 MAX-ACCESS read-only
667 STATUS current
668 DESCRIPTION
669 "The computed distance to the destination network entry
670 from this router."
671 ::= { cEigrpTopoEntry 15 }
672
673 cEigrpReportDistance OBJECT-TYPE
674 SYNTAX Unsigned32
675 MAX-ACCESS read-only
676 STATUS current
677 DESCRIPTION
678 "The computed distance to the destination network in the
679 topology entry reported to this router by the originator
680 of this route."
681 ::= { cEigrpTopoEntry 16 }
682
683 -- EIGRP Peer table per VPN and AS (expansion table)
684
685 cEigrpPeerTable OBJECT-TYPE
686 SYNTAX SEQUENCE OF CEigrpPeerEntry
687 MAX-ACCESS not-accessible
688 STATUS current
689 DESCRIPTION
690 "The table of established EIGRP peers (neighbors) in the
691 selected autonomous system. Peers are indexed by their
692 unique internal handle id, as well as the AS number and
693 VPN id. The peer entry is removed from the table if
694 the peer is declared down."
695 ::= { cEigrpPeerInfo 1 }
696
697 cEigrpPeerEntry OBJECT-TYPE
698 SYNTAX CEigrpPeerEntry
699 MAX-ACCESS not-accessible
700 STATUS current
701 DESCRIPTION
702 "Statistics and operational parameters for a single peer
703 in the AS."
704 INDEX { cEigrpVpnId, cEigrpAsNumber, cEigrpHandle }
705 ::= { cEigrpPeerTable 1 }
706
707 CEigrpPeerEntry ::=
708 SEQUENCE {
709 cEigrpHandle Unsigned32,
710 cEigrpPeerAddrType InetAddressType,
711 cEigrpPeerAddr InetAddress,
712 cEigrpPeerIfIndex InterfaceIndexOrZero,
713 cEigrpHoldTime Unsigned32,
714 cEigrpUpTime EigrpUpTimeString,
715 cEigrpSrtt Unsigned32,
716 cEigrpRto Unsigned32,
717 cEigrpPktsEnqueued Unsigned32,
718 cEigrpLastSeq Unsigned32,
719 cEigrpVersion EigrpVersionString,
720 cEigrpRetrans Counter32,
721 cEigrpRetries Unsigned32
722 }
723
724 cEigrpHandle OBJECT-TYPE
725 SYNTAX Unsigned32
726 MAX-ACCESS not-accessible
727 STATUS current
728 DESCRIPTION
729 "The unique internal identifier for the peer in the AS.
730 This is a unique value among peer entries in a selected
731 table."
732 ::= { cEigrpPeerEntry 1 }
733
734 cEigrpPeerAddrType OBJECT-TYPE
735 SYNTAX InetAddressType
736 MAX-ACCESS read-only
737 STATUS current
738 DESCRIPTION
739 "The format of the remote source IP address used by the
740 peer to establish the EIGRP adjacency with this router."
741 ::= { cEigrpPeerEntry 2 }
742
743 cEigrpPeerAddr OBJECT-TYPE
744 SYNTAX InetAddress
745 MAX-ACCESS read-only
746 STATUS current
747 DESCRIPTION
748 "The source IP address used by the peer to establish the
749 EIGRP adjacency with this router. The format is
750 governed by object cEigrpPeerAddrType."
751 ::= { cEigrpPeerEntry 3 }
752
753 cEigrpPeerIfIndex OBJECT-TYPE
754 SYNTAX InterfaceIndexOrZero
755 MAX-ACCESS read-only
756 STATUS current
757 DESCRIPTION
758 "The ifIndex of the interface on this router through
759 which this peer can be reached."
760 ::= { cEigrpPeerEntry 4 }
761
762 cEigrpHoldTime OBJECT-TYPE
763 SYNTAX Unsigned32
764 UNITS "seconds"
765 MAX-ACCESS read-only
766 STATUS current
767 DESCRIPTION
768 "The count-down timer indicating how much time must
769 pass without receiving a hello packet from this
770 EIGRP peer before this router declares the peer down.
771 A peer declared as down is removed from the table and
772 is no longer visible."
773 ::= { cEigrpPeerEntry 5 }
774
775 cEigrpUpTime OBJECT-TYPE
776 SYNTAX EigrpUpTimeString
777 MAX-ACCESS read-only
778 STATUS current
779 DESCRIPTION
780 "The elapsed time since the EIGRP adjacency was first
781 established with the peer."
782 ::= { cEigrpPeerEntry 6 }
783
784 cEigrpSrtt OBJECT-TYPE
785 SYNTAX Unsigned32
786 UNITS "milliseconds"
787 MAX-ACCESS read-only
788 STATUS current
789 DESCRIPTION
790 "The computed smooth round trip time for packets to and
791 from the peer."
792 ::= { cEigrpPeerEntry 7 }
793
794 cEigrpRto OBJECT-TYPE
795 SYNTAX Unsigned32
796 UNITS "milliseconds"
797 MAX-ACCESS read-only
798 STATUS current
799 DESCRIPTION
800 "The computed retransmission timeout for the peer.
801 This value is computed over time as packets are sent to
802 the peer and acknowledgements are received from it,
803 and is the amount of time to wait before resending
804 a packet from the retransmission queue to the peer
805 when an expected acknowledgement has not been received."
806 ::= { cEigrpPeerEntry 8 }
807
808 cEigrpPktsEnqueued OBJECT-TYPE
809 SYNTAX Unsigned32
810 MAX-ACCESS read-only
811 STATUS current
812 DESCRIPTION
813 "The number of any EIGRP packets currently enqueued
814 waiting to be sent to this peer."
815 ::= { cEigrpPeerEntry 9 }
816
817 cEigrpLastSeq OBJECT-TYPE
818 SYNTAX Unsigned32
819 MAX-ACCESS read-only
820 STATUS current
821 DESCRIPTION
822 "All transmitted EIGRP packets have a sequence number
823 assigned. This is the sequence number of the last EIGRP
824 packet sent to this peer."
825 ::= { cEigrpPeerEntry 10 }
826
827 cEigrpVersion OBJECT-TYPE
828 SYNTAX EigrpVersionString
829 MAX-ACCESS read-only
830 STATUS current
831 DESCRIPTION
832 "The EIGRP version information reported by the remote
833 peer."
834 ::= { cEigrpPeerEntry 11 }
835
836 cEigrpRetrans OBJECT-TYPE
837 SYNTAX Counter32
838 MAX-ACCESS read-only
839 STATUS current
840 DESCRIPTION
841 "The cumulative number of retransmissions to this peer
842 during the period that the peer adjacency has remained
843 up."
844 ::= { cEigrpPeerEntry 12 }
845
846 cEigrpRetries OBJECT-TYPE
847 SYNTAX Unsigned32
848 MAX-ACCESS read-only
849 STATUS current
850 DESCRIPTION
851 "The number of times the current unacknowledged packet
852 has been retried, i.e. resent to this peer to be
853 acknowledged."
854 ::= { cEigrpPeerEntry 13 }
855
856 -- EIGRP Interfaces table per VPN and AS
857
858 cEigrpInterfaceTable OBJECT-TYPE
859 SYNTAX SEQUENCE OF CEigrpInterfaceEntry
860 MAX-ACCESS not-accessible
861 STATUS current
862 DESCRIPTION
863 "The table of interfaces over which EIGRP is running, and
864 their associated statistics. This table is independent
865 of whether any peer adjacencies have been formed over
866 the interfaces or not. Interfaces running EIGRP are
867 determined by whether their assigned IP addresses fall
868 within configured EIGRP network statements."
869 ::= { cEigrpInterfaceInfo 1 }
870
871 cEigrpInterfaceEntry OBJECT-TYPE
872 SYNTAX CEigrpInterfaceEntry
873 MAX-ACCESS not-accessible
874 STATUS current
875 DESCRIPTION
876 "Information for a single interface running EIGRP in the
877 AS and VPN."
878 INDEX { cEigrpVpnId, cEigrpAsNumber, ifIndex }
879 ::= { cEigrpInterfaceTable 1 }
880
881 CEigrpInterfaceEntry ::=
882 SEQUENCE {
883 cEigrpPeerCount Gauge32,
884 cEigrpXmitReliableQ Gauge32,
885 cEigrpXmitUnreliableQ Gauge32,
886 cEigrpMeanSrtt Unsigned32,
887 cEigrpPacingReliable Unsigned32,
888 cEigrpPacingUnreliable Unsigned32,
889 cEigrpMFlowTimer Unsigned32,
890 cEigrpPendingRoutes Gauge32,
891 cEigrpHelloInterval Unsigned32,
892 cEigrpXmitNextSerial Counter64,
893 cEigrpUMcasts Counter32,
894 cEigrpRMcasts Counter32,
895 cEigrpUUcasts Counter32,
896 cEigrpRUcasts Counter32,
897 cEigrpMcastExcepts Counter32,
898 cEigrpCRpkts Counter32,
899 cEigrpAcksSuppressed Counter32,
900 cEigrpRetransSent Counter32,
901 cEigrpOOSrcvd Counter32,
902 cEigrpAuthMode INTEGER,
903 cEigrpAuthKeyChain SnmpAdminString
904 }
905
906 cEigrpPeerCount OBJECT-TYPE
907 SYNTAX Gauge32
908 MAX-ACCESS read-only
909 STATUS current
910 DESCRIPTION
911 "The number of EIGRP adjacencies currently formed with
912 peers reached through this interface."
913 ::= { cEigrpInterfaceEntry 3 }
914
915 cEigrpXmitReliableQ OBJECT-TYPE
916 SYNTAX Gauge32
917 MAX-ACCESS read-only
918 STATUS current
919 DESCRIPTION
920 "The number of EIGRP packets currently waiting in the
921 reliable transport (acknowledgement-required)
922 transmission queue to be sent to a peer."
923 ::= { cEigrpInterfaceEntry 4 }
924
925 cEigrpXmitUnreliableQ OBJECT-TYPE
926 SYNTAX Gauge32
927 MAX-ACCESS read-only
928 STATUS current
929 DESCRIPTION
930 "The number EIGRP of packets currently waiting in
931 the unreliable transport (no acknowledgement required)
932 transmission queue."
933 ::= { cEigrpInterfaceEntry 5 }
934
935 cEigrpMeanSrtt OBJECT-TYPE
936 SYNTAX Unsigned32
937 UNITS "milliseconds"
938 MAX-ACCESS read-only
939 STATUS current
940 DESCRIPTION
941 "The average of all the computed smooth round trip time
942 values for a packet to and from all peers established on
943 this interface."
944 ::= { cEigrpInterfaceEntry 6 }
945
946 cEigrpPacingReliable OBJECT-TYPE
947 SYNTAX Unsigned32
948 UNITS "milliseconds"
949 MAX-ACCESS read-only
950 STATUS current
951 DESCRIPTION
952 "The configured time interval between EIGRP packet
953 transmissions on the interface when the reliable transport
954 method is used."
955 ::= { cEigrpInterfaceEntry 7 }
956
957 cEigrpPacingUnreliable OBJECT-TYPE
958 SYNTAX Unsigned32
959 UNITS "milliseconds"
960 MAX-ACCESS read-only
961 STATUS current
962 DESCRIPTION
963 "The configured time interval between EIGRP packet
964 transmissions on the interface when the unreliable
965 transport method is used."
966 ::= { cEigrpInterfaceEntry 8 }
967
968 cEigrpMFlowTimer OBJECT-TYPE
969 SYNTAX Unsigned32
970 UNITS "milliseconds"
971 MAX-ACCESS read-only
972 STATUS current
973 DESCRIPTION
974 "The configured multicast flow control timer value for
975 this interface."
976 ::= { cEigrpInterfaceEntry 9 }
977
978 cEigrpPendingRoutes OBJECT-TYPE
979 SYNTAX Gauge32
980 MAX-ACCESS read-only
981 STATUS current
982 DESCRIPTION
983 "The number of queued EIGRP routing updates awaiting
984 transmission on this interface."
985 ::= { cEigrpInterfaceEntry 10 }
986
987 cEigrpHelloInterval OBJECT-TYPE
988 SYNTAX Unsigned32
989 UNITS "seconds"
990 MAX-ACCESS read-only
991 STATUS current
992 DESCRIPTION
993 "The configured time interval between Hello packet
994 transmissions for this interface."
995 ::= { cEigrpInterfaceEntry 11 }
996
997 cEigrpXmitNextSerial OBJECT-TYPE
998 SYNTAX Counter64
999 MAX-ACCESS read-only
1000 STATUS current
1001 DESCRIPTION
1002 "The serial number of the next EIGRP packet that is to
1003 be queued for transmission on this interface."
1004 ::= { cEigrpInterfaceEntry 12 }
1005
1006 cEigrpUMcasts OBJECT-TYPE
1007 SYNTAX Counter32
1008 MAX-ACCESS read-only
1009 STATUS current
1010 DESCRIPTION
1011 "The total number of unreliable (no acknowledgement
1012 required) EIGRP multicast packets sent on this
1013 interface."
1014 ::= { cEigrpInterfaceEntry 13 }
1015
1016 cEigrpRMcasts OBJECT-TYPE
1017 SYNTAX Counter32
1018 MAX-ACCESS read-only
1019 STATUS current
1020 DESCRIPTION
1021 "The total number of reliable (acknowledgement required)
1022 EIGRP multicast packets sent on this interface."
1023 ::= { cEigrpInterfaceEntry 14 }
1024
1025 cEigrpUUcasts OBJECT-TYPE
1026 SYNTAX Counter32
1027 MAX-ACCESS read-only
1028 STATUS current
1029 DESCRIPTION
1030 "The total number of unreliable (no acknowledgement
1031 required) EIGRP unicast packets sent on this
1032 interface."
1033 ::= { cEigrpInterfaceEntry 15 }
1034
1035 cEigrpRUcasts OBJECT-TYPE
1036 SYNTAX Counter32
1037 MAX-ACCESS read-only
1038 STATUS current
1039 DESCRIPTION
1040 "The total number of reliable (acknowledgement required)
1041 unicast packets sent on this interface."
1042 ::= { cEigrpInterfaceEntry 16 }
1043
1044 cEigrpMcastExcepts OBJECT-TYPE
1045 SYNTAX Counter32
1046 MAX-ACCESS read-only
1047 STATUS current
1048 DESCRIPTION
1049 "The total number of EIGRP multicast exception
1050 transmissions that have occurred on this interface."
1051 ::= { cEigrpInterfaceEntry 17 }
1052
1053 cEigrpCRpkts OBJECT-TYPE
1054 SYNTAX Counter32
1055 MAX-ACCESS read-only
1056 STATUS current
1057 DESCRIPTION
1058 "The total number EIGRP Conditional-Receive packets sent on
1059 this interface."
1060 ::= { cEigrpInterfaceEntry 18 }
1061
1062 cEigrpAcksSuppressed OBJECT-TYPE
1063 SYNTAX Counter32
1064 MAX-ACCESS read-only
1065 STATUS current
1066 DESCRIPTION
1067 "The total number of individual EIGRP acknowledgement
1068 packets that have been suppressed and combined in
1069 an already enqueued outbound reliable packet on this
1070 interface."
1071 ::= { cEigrpInterfaceEntry 19 }
1072
1073 cEigrpRetransSent OBJECT-TYPE
1074 SYNTAX Counter32
1075 MAX-ACCESS read-only
1076 STATUS current
1077 DESCRIPTION
1078 "The total number EIGRP packet retransmissions sent on
1079 the interface."
1080 ::= { cEigrpInterfaceEntry 20 }
1081
1082 cEigrpOOSrcvd OBJECT-TYPE
1083 SYNTAX Counter32
1084 MAX-ACCESS read-only
1085 STATUS current
1086 DESCRIPTION
1087 "The total number of out-of-sequence EIGRP packets
1088 received."
1089 ::= { cEigrpInterfaceEntry 21 }
1090
1091 cEigrpAuthMode OBJECT-TYPE
1092 SYNTAX INTEGER {
1093 none(1),
1094 md5(2)
1095 }
1096 MAX-ACCESS read-only
1097 STATUS current
1098 DESCRIPTION
1099 "The EIGRP authentication mode of the interface.
1100 none : no authentication enabled on the interface
1101 md5 : MD5 authentication enabled on the interface"
1102 ::= { cEigrpInterfaceEntry 22 }
1103
1104 cEigrpAuthKeyChain OBJECT-TYPE
1105 SYNTAX SnmpAdminString
1106 MAX-ACCESS read-only
1107 STATUS current
1108 DESCRIPTION
1109 "The name of the authentication key-chain configured
1110 on this interface. The key-chain is a reference to
1111 which set of secret keys are to be accessed in order
1112 to determine which secret key string to use. The key
1113 chain name is not the secret key string password and
1114 can also be used in other routing protocols, such
1115 as RIP and ISIS."
1116 ::= { cEigrpInterfaceEntry 23 }
1117
1118 -- Notifications
1119
1120 cEigrpAuthFailureEvent NOTIFICATION-TYPE
1121 OBJECTS { cEigrpPeerAddrType, cEigrpPeerAddr }
1122 STATUS current
1123 DESCRIPTION
1124 "This notification is sent when EIGRP MD5 authentication
1125 is enabled on any interface and peer adjacencies are
1126 formed, and any adjacencies go down as a result of an
1127 authentication failure."
1128 ::= { cEigrpMIBNotifications 1 }
1129
1130 cEigrpRouteStuckInActive NOTIFICATION-TYPE
1131 OBJECTS { cEigrpPeerAddrType, cEigrpPeerAddr,
1132 cEigrpStuckInActive }
1133 STATUS current
1134 DESCRIPTION
1135 "This notification is sent when a route in the topology
1136 table is stuck in an active state. During the query
1137 phase for a new route to a destination network, a route
1138 is described as being in the active state if when an
1139 alternate path is actively being sought, no replies are
1140 received to normal queries or stuck-in-active queries."
1141 ::= { cEigrpMIBNotifications 2 }
1142
1143 -- Conformance
1144
1145 cEigrpMIBCompliances
1146 OBJECT IDENTIFIER ::= { cEigrpMIBConformance 1 }
1147
1148 cEigrpMIBGroups
1149 OBJECT IDENTIFIER ::= { cEigrpMIBConformance 2 }
1150
1151 -- Compliance
1152
1153 cEigrpMIBCompliance MODULE-COMPLIANCE
1154 STATUS current
1155 DESCRIPTION
1156 "The compliance statement for entities which implement
1157 the Cisco EIGRP Management MIB."
1158 MODULE
1159 MANDATORY-GROUPS {
1160 cEigrpVpnDataGroup,
1161 cEigrpTrafficStatsGroup,
1162 cEigrpInterfaceDataGroup,
1163 cEigrpPeerDataGroup,
1164 cEigrpTopoDataGroup,
1165 cEigrpNotificationsGroup
1166 }
1167
1168 OBJECT cEigrpAsRouterIdType
1169 SYNTAX INTEGER { ipv4(1) }
1170 DESCRIPTION
1171 "An implementation is only required to support
1172 IPv4 address type."
1173
1174 OBJECT cEigrpRouteOriginAddrType
1175 SYNTAX INTEGER { ipv4(1) }
1176 DESCRIPTION
1177 "An implementation is only required to support
1178 IPv4 address type."
1179
1180 OBJECT cEigrpNextHopAddressType
1181 SYNTAX INTEGER { ipv4(1) }
1182 DESCRIPTION
1183 "An implementation is only required to support
1184 IPv4 address type."
1185
1186 OBJECT cEigrpPeerAddrType
1187 SYNTAX INTEGER { ipv4(1) }
1188 DESCRIPTION
1189 "An implementation is only required to support
1190 IPv4 address type."
1191 ::= { cEigrpMIBCompliances 1 }
1192
1193 -- Units of Conformance
1194
1195 cEigrpVpnDataGroup OBJECT-GROUP
1196 OBJECTS {
1197 cEigrpVpnName
1198 }
1199 STATUS current
1200 DESCRIPTION
1201 "The collection of VPN names which have been configured
1202 with one or more EIGRP autonmous systems."
1203 ::= { cEigrpMIBGroups 1 }
1204
1205 cEigrpTrafficStatsGroup OBJECT-GROUP
1206 OBJECTS {
1207 cEigrpHellosSent,
1208 cEigrpHellosRcvd,
1209 cEigrpUpdatesSent,
1210 cEigrpUpdatesRcvd,
1211 cEigrpQueriesSent,
1212 cEigrpQueriesRcvd,
1213 cEigrpRepliesSent,
1214 cEigrpRepliesRcvd,
1215 cEigrpAcksSent,
1216 cEigrpAcksRcvd,
1217 cEigrpInputQHighMark,
1218 cEigrpInputQDrops,
1219 cEigrpSiaQueriesSent,
1220 cEigrpSiaQueriesRcvd
1221 }
1222 STATUS current
1223 DESCRIPTION
1224 "A collection of objects providing management information
1225 regarding collective EIGRP packet statistics for all EIGRP
1226 autonomous systems configured."
1227 ::= { cEigrpMIBGroups 2 }
1228
1229 cEigrpInterfaceDataGroup OBJECT-GROUP
1230 OBJECTS {
1231 cEigrpPeerCount,
1232 cEigrpXmitReliableQ,
1233 cEigrpXmitUnreliableQ,
1234 cEigrpMeanSrtt,
1235 cEigrpPacingReliable,
1236 cEigrpPacingUnreliable,
1237 cEigrpMFlowTimer,
1238 cEigrpPendingRoutes,
1239 cEigrpHelloInterval,
1240 cEigrpXmitNextSerial,
1241 cEigrpUMcasts,
1242 cEigrpRMcasts,
1243 cEigrpUUcasts,
1244 cEigrpRUcasts,
1245 cEigrpMcastExcepts,
1246 cEigrpCRpkts,
1247 cEigrpAcksSuppressed,
1248 cEigrpRetransSent,
1249 cEigrpOOSrcvd,
1250 cEigrpAuthMode,
1251 cEigrpAuthKeyChain
1252 }
1253 STATUS current
1254 DESCRIPTION
1255 "A collection of objects providing management information
1256 for interfaces over which EIGRP is configured and
1257 running."
1258 ::= { cEigrpMIBGroups 3 }
1259
1260 cEigrpPeerDataGroup OBJECT-GROUP
1261 OBJECTS {
1262 cEigrpNbrCount,
1263 cEigrpPeerAddrType,
1264 cEigrpPeerAddr,
1265 cEigrpPeerIfIndex,
1266 cEigrpHoldTime,
1267 cEigrpUpTime,
1268 cEigrpSrtt,
1269 cEigrpRto,
1270 cEigrpPktsEnqueued,
1271 cEigrpLastSeq,
1272 cEigrpVersion,
1273 cEigrpRetrans,
1274 cEigrpRetries
1275 }
1276 STATUS current
1277 DESCRIPTION
1278 "A collection of objects providing management information
1279 for EIGRP peer adjacencies formed in the EIGRP
1280 autonoumous systems."
1281 ::= { cEigrpMIBGroups 4 }
1282
1283 cEigrpTopoDataGroup OBJECT-GROUP
1284 OBJECTS {
1285 cEigrpAsRouterId,
1286 cEigrpAsRouterIdType,
1287 cEigrpTopoRoutes,
1288 cEigrpHeadSerial,
1289 cEigrpNextSerial,
1290 cEigrpXmitPendReplies,
1291 cEigrpXmitDummies,
1292 cEigrpActive,
1293 cEigrpStuckInActive,
1294 cEigrpDestSuccessors,
1295 cEigrpFdistance,
1296 cEigrpRouteOriginType,
1297 cEigrpRouteOriginAddrType,
1298 cEigrpRouteOriginAddr,
1299 cEigrpNextHopAddressType,
1300 cEigrpNextHopAddress,
1301 cEigrpNextHopInterface,
1302 cEigrpDistance,
1303 cEigrpReportDistance
1304 }
1305 STATUS current
1306 DESCRIPTION
1307 "A collection of objects providing management information
1308 for EIGRP topology routes derived within autonomous
1309 systems and received in updates from EIGRP neighbors."
1310 ::= { cEigrpMIBGroups 5 }
1311
1312 cEigrpNotificationsGroup NOTIFICATION-GROUP
1313 NOTIFICATIONS {
1314 cEigrpAuthFailureEvent,
1315 cEigrpRouteStuckInActive
1316 }
1317 STATUS current
1318 DESCRIPTION
1319 "Group of notifications on EIGRP routers."
1320 ::= { cEigrpMIBGroups 6 }
1321 END