-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCISCO-IF-EXTENSION-MIB
1896 lines (1632 loc) · 62.4 KB
/
CISCO-IF-EXTENSION-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- *****************************************************************
-- Cisco Extension to the IF MIB
--
-- May 2002, Manik Raina
--
-- Copyright (c) 2002-2008 by cisco Systems Inc.
--
-- All rights reserved.
-- ***************************************************************
CISCO-IF-EXTENSION-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
Gauge32,
Unsigned32,
Integer32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TruthValue,
TimeStamp,
DisplayString,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
ifIndex,
InterfaceIndexOrZero,
ifName,
ifType,
ifAdminStatus,
ifOperStatus
FROM IF-MIB
entPhysicalIndex
FROM ENTITY-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
Unsigned64,
IfOperStatusReason
FROM CISCO-TC
ciscoMgmt
FROM CISCO-SMI;
ciscoIfExtensionMIB MODULE-IDENTITY
LAST-UPDATED "200707230000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
Customer Service
Postal: 170 West Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected],
DESCRIPTION
"A MIB module for extending the IF-MIB (RFC2863)
to add objects which provide additional information
about interfaces not available in other MIBS.
This MIB replaces the OLD-CISCO-INTERFACES-MIB."
REVISION "200707230000Z"
DESCRIPTION
"Added cieIfInterval in cieIfUtilTable. Changed
the description of objects in cieIfUtilTable.
Added ciscoIfExtUtilIntervalGroup."
REVISION "200611010000Z"
DESCRIPTION
"Add support for asymetrical interfaces speeds.
- Added following objects in cieIfInterfaceTable
cieIfSpeedReceive
cieIfHighSpeedReceive
- Added ciscoIfExtensionAsymmetricalSpeedGroup OBJECT-GROUP
- Added ciscoIfExtensionMIBCompliance6 MODULE-COMPLIANCE"
REVISION "200504280000Z"
DESCRIPTION
"Added:
- cieLinkUp & cieLinkDown notifications.
- object to control sending: only standard
linkUp/linkDown OR only cieLinkUp/cieLinkDown
OR both.
- object to control sending only standard defined
varbinds in linkUp/linkDown OR additional varbinds
in addition to standard defined."
REVISION "200501250000Z"
DESCRIPTION
"Updated the description of cieIfDot1dBaseMappingEntry."
REVISION "200409080000Z"
DESCRIPTION
"Added new objects 'cieIfOperStatusCause' and
'cieIfOperStatusCauseDescr' in cieIfInterfaceTable.
Added a new table 'cieIfStatusListTable'."
REVISION "200311140000Z"
DESCRIPTION
"Added new objects cieIfName and cieIfIndex for the
'ifName' to 'ifIndex' mapping. Deprecated the
ciscoIfExtensionMIBCompliance2 compliance.
Added ciscoIfExtensionMIBCompliance3 and
ciscoIfExtIfNameMappingGroup."
REVISION "200308120000Z"
DESCRIPTION
"Added ciscoIfExtDot1dBaseMappingGroup."
REVISION "200307170000Z"
DESCRIPTION
"Added ciscoIfExtUtilizationGroup."
REVISION "200306250000Z"
DESCRIPTION
"Added the object cieSystemMtu and
ciscoIfExtSystemGroup.
Added ciscoIfExtDot1qCustomEtherType and
ciscoIfExtDot1qEtherTypeGroup."
REVISION "200210120000Z"
DESCRIPTION
"Added the objects cieIfDhcpMode, cieIfMtu,
cieIfContextName to cieIfInterfaceTable.
Deprecated the ciscoIfExtensionMIBCompliance
compliance. Added ciscoIfExtensionMIBCompliance1.
Added ciscoIfExtensionTableIntfGroup1."
REVISION "200207240000Z"
DESCRIPTION
"Initial version of the MIB module."
::= { ciscoMgmt 276 }
ciscoIfExtensionMIBNotifications OBJECT IDENTIFIER
::= { ciscoIfExtensionMIB 0 }
ciscoIfExtensionMIBObjects OBJECT IDENTIFIER
::= { ciscoIfExtensionMIB 1 }
ciscoIfExtensionMIBConformance OBJECT IDENTIFIER
::= { ciscoIfExtensionMIB 2 }
ciscoIfExtensionStats OBJECT IDENTIFIER
::= { ciscoIfExtensionMIBObjects 1 }
ciscoIfExtSystemConfig OBJECT IDENTIFIER
::= { ciscoIfExtensionMIBObjects 2 }
ciscoIfExtDot1qCustomEtherType OBJECT IDENTIFIER
::= { ciscoIfExtensionMIBObjects 3 }
ciscoIfExtUtilization OBJECT IDENTIFIER
::= { ciscoIfExtensionMIBObjects 4 }
ciscoIfExtDot1dBaseMapping OBJECT IDENTIFIER
::= { ciscoIfExtensionMIBObjects 5 }
ciscoIfExtIfNameMapping OBJECT IDENTIFIER
::= { ciscoIfExtensionMIBObjects 6 }
-- Textual Conventions
InterfaceIndexList ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines the 'ifIndex' for a
set of 64 interfaces in a module.
Each 4 bytes within the value of an object of this
type is combined together to represent the interface
index of a particular port in the module (i.e., each
4 byte group represents the 'ifIndex' of an interface).
The first 4 bytes (byte 1, byte 2, byte 3 and byte 4)
combined represent the 'ifIndex' of an interface.
While the second 4 bytes (byte 5, byte 6, byte 7 and
byte 8) represent the 'ifIndex' for the next interface
in the module, and so on.
If there are only 'n' interfaces in a set of 64
interfaces in the module, then bytes after the '4n'
byte in this object are irrelevant."
SYNTAX OCTET STRING (SIZE (0..256))
InterfaceOperModeList ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines the operational mode
for a set of 64 interfaces in a module.
The operational mode of an interface is represented
by the value defined in the textual convention
'InterfaceOperMode' (defined in CISCO-ST-TC).
Each 'byte' within the value of an object of this
type, specifies the operational mode of an interface
in the module.
The first byte (byte 1) represents the operational
mode of an interface in the module, whose 'ifIndex'
is represented by the corresponding instance of
'cieInterfacesIndex' object in its first 4 bytes.
The second byte (byte 2) represents the operational
mode of an interface in the module, whose 'ifIndex'
is represented by the corresponding instance of
'cieInterfacesIndex' object in its second 4 bytes.
If there are only 'n' interfaces in a set of 64
interfaces in the module, then bytes after the 'n'
byte in this object are irrelevant."
SYNTAX OCTET STRING (SIZE (0..64))
InterfaceOperCauseList ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines the operational
status cause for a set of 64 interfaces in a module.
The operational status cause of an interface is
represented by the value defined in the textual
convention 'IfOperStatusReason' (defined in CISCO-TC).
Each 2 bytes within the value of an object of this
type is combined together to represent the operational
status cause of a particular interface in the module
(i.e., each 2 byte group represents the
'cieIfOperStatusCause' of an interface).
The first 2 bytes (byte 1 and byte 2) of this object,
represents the operational status cause of an
interface in the module, whose 'ifIndex' is
represented by the corresponding instance of
'cieInterfacesIndex' object in its first 4 bytes.
The next 2 bytes (byte 3 and byte 4) of this object,
represents the operational status cause of an
interface in the module, whose 'ifIndex' is
represented by the corresponding instance of
'cieInterfacesIndex' object in the next 4 bytes
respectively.
If there are only 'n' interfaces in a set of 64
interfaces in the module, then bytes after the
'2n' byte in this object are irrelevant."
SYNTAX OCTET STRING (SIZE (0..128))
-- CISCO IF Extension Packet Stats Table
cieIfPacketStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CieIfPacketStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains interface packet
statistics which are not available in
IF-MIB(RFC2863).
As an example, some interfaces to which
objects in this table are applicable are
as follows :
o Ethernet
o FastEthernet
o ATM
o BRI
o Sonet
o GigabitEthernet
Some objects defined in this table may be
applicable to physical interfaces only.
As a result, this table may be sparse for
some logical interfaces."
::= { ciscoIfExtensionStats 1 }
cieIfPacketStatsEntry OBJECT-TYPE
SYNTAX CieIfPacketStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry into the cieIfPacketStatsTable."
INDEX { ifIndex }
::= { cieIfPacketStatsTable 1 }
CieIfPacketStatsEntry ::= SEQUENCE {
cieIfLastInTime Gauge32,
cieIfLastOutTime Gauge32,
cieIfLastOutHangTime Gauge32,
cieIfInRuntsErrs Counter32,
cieIfInGiantsErrs Counter32,
cieIfInFramingErrs Counter32,
cieIfInOverrunErrs Counter32,
cieIfInIgnored Counter32,
cieIfInAbortErrs Counter32,
cieIfInputQueueDrops Counter32,
cieIfOutputQueueDrops Counter32,
cieIfPacketDiscontinuityTime TimeStamp
}
-- The following section describes the objects in the table
-- in greater detail.
cieIfLastInTime OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the elapsed time in
milliseconds since last protocol input
packet was received.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfPacketDiscontinuityTime."
::= { cieIfPacketStatsEntry 1 }
cieIfLastOutTime OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the elapsed time in
milliseconds since last protocol output
packet was transmitted.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfPacketDiscontinuityTime."
::= { cieIfPacketStatsEntry 2 }
cieIfLastOutHangTime OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the elapsed time in
milliseconds since last protocol output
packet could not be successfully transmitted.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfPacketDiscontinuityTime."
::= { cieIfPacketStatsEntry 3 }
cieIfInRuntsErrs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets input on a particular
physical interface which were dropped as
they were smaller than the minimum allowable
physical media limit.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfPacketDiscontinuityTime."
::= { cieIfPacketStatsEntry 4 }
cieIfInGiantsErrs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input packets on a particular
physical interface which were dropped as
they were larger than the ifMtu (largest
permitted size of a packet which can be
sent/received on an interface).
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfPacketDiscontinuityTime."
::= { cieIfPacketStatsEntry 5 }
cieIfInFramingErrs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input packets on a physical
interface which were misaligned or had
framing errors. This happens when the
format of the incoming packet on a physical
interface is incorrect.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfPacketDiscontinuityTime."
::= { cieIfPacketStatsEntry 6 }
cieIfInOverrunErrs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input packets which arrived
on a particular physical interface which
were too quick for the hardware to receive
and hence the receiver ran out of buffers.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfPacketDiscontinuityTime."
::= { cieIfPacketStatsEntry 7 }
cieIfInIgnored OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input packets which were simply
ignored by this physical interface due to
insufficient resources to handle the incoming
packets.
For example, this could indicate that the input
receive buffers are not available or that the
receiver lost a packet.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfPacketDiscontinuityTime."
::= { cieIfPacketStatsEntry 8 }
cieIfInAbortErrs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of input packets which were dropped
because the receiver aborted.
Examples of this could be when an abort
sequence aborted the input frame or when
there is a collision in an ethernet segment.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfPacketDiscontinuityTime."
::= { cieIfPacketStatsEntry 9 }
cieIfInputQueueDrops OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input packets which were
dropped.
Some reasons why this object could be
incremented are:
o Input queue is full.
o Errors at the receiver hardware
while receiving the packet.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfPacketDiscontinuityTime."
::= { cieIfPacketStatsEntry 10 }
cieIfOutputQueueDrops OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of output
packets dropped by the interface even though
no error had been detected to prevent them
being transmitted.
The packet could be dropped for many reasons,
which could range from the interface being
down to errors in the format of the packet.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfPacketDiscontinuityTime."
::= { cieIfPacketStatsEntry 11 }
cieIfPacketDiscontinuityTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime on the most recent
occasion at which this interface's counters
suffered a discontinuity.
If no such discontinuities have occurred
since the last re-initialization of the
local management subsystem, then this
object contains a value of zero."
::= { cieIfPacketStatsEntry 12 }
-- Cisco IF Extension Interface Table
cieIfInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CieIfInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects which provide
more information about interface
properties not available in IF-MIB
(RFC 2863).
Some objects defined in this table may be
applicable to physical interfaces only.
As a result, this table may be sparse for
logical interfaces."
::= { ciscoIfExtensionStats 2 }
cieIfInterfaceEntry OBJECT-TYPE
SYNTAX CieIfInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry into the cieIfInterfaceTable."
INDEX { ifIndex }
::= { cieIfInterfaceTable 1 }
CieIfInterfaceEntry ::= SEQUENCE {
cieIfResetCount Counter32,
cieIfKeepAliveEnabled TruthValue,
cieIfStateChangeReason SnmpAdminString,
cieIfCarrierTransitionCount Counter32,
cieIfInterfaceDiscontinuityTime TimeStamp,
cieIfDhcpMode TruthValue,
cieIfMtu Integer32,
cieIfContextName OCTET STRING,
cieIfOperStatusCause IfOperStatusReason,
cieIfOperStatusCauseDescr SnmpAdminString,
cieIfSpeedReceive Gauge32,
cieIfHighSpeedReceive Gauge32
}
cieIfResetCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the interface was
internally reset and brought up.
Some of the actions which can cause this
counter to increment are :
o Bringing an interface up using the
interface CLI command.
o Clearing the interface with the exec
CLI command.
o Bringing the interface up via SNMP.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfInterfaceDiscontinuityTime."
::= { cieIfInterfaceEntry 1 }
cieIfKeepAliveEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A keepalive is a small, layer-2 message
that is transmitted by a network device
to let directly-connected network devices
know of its presence.
This object returns 'true' if keepalives
are enabled on this interface. If keepalives
are not enabled, 'false' is returned.
Setting this object to TRUE or FALSE enables
or disables (respectively) keepalive on this
interface."
::= { cieIfInterfaceEntry 2 }
cieIfStateChangeReason OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object displays a human-readable
textual string which describes the
cause of the last state change of the
interface.
Examples of the values this object
can take are:
o 'Lost Carrier'
o 'administratively down'
o 'up'
o 'down'"
::= { cieIfInterfaceEntry 3 }
cieIfCarrierTransitionCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times interface saw the carrier
signal transition.
For example, if a T1 line is unplugged,
then framer will detect the loss of signal
(LOS) on the line and will count it as a
transition.
Discontinuities in the value of this variable
can occur at re-initialization of the
management system, and at other times as
indicated by the values of
cieIfInterfaceDiscontinuityTime."
::= { cieIfInterfaceEntry 4 }
cieIfInterfaceDiscontinuityTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime on the most recent
occasion at which this interface's counters
suffered a discontinuity.
If no such discontinuities have occurred
since the last re-initialization of the
local management subsystem, then this
object contains a value of zero."
::= { cieIfInterfaceEntry 5 }
cieIfDhcpMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The DHCP mode configured by the
administrator.
If 'true' the DHCP is enabled. In which
case an IP address is requested in DHCP.
This is in addition to any that are
configured by the administrator in
'ciiIPAddressTable' or 'ciiIPIfAddressTable'
in CISCO-IP-IF-MIB.
If 'false' the DHCP is disabled. In which
case all IP addresses are configured by the
administrator in 'ciiIPAddressTable' or
'ciiIPIfAddressTable'.
For interfaces, for which DHCP cannot be or
is not supported, then this object has the
value 'false'."
DEFVAL { false }
::= { cieIfInterfaceEntry 6 }
cieIfMtu OBJECT-TYPE
SYNTAX Integer32 (40..2147483647 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MTU configured by the administrator.
This object is exactly same as 'ifMtu' in
ifTable from IF-MIB for the same ifIndex
value , except that it is configurable by the
administrator. For more description of this
object refer to 'ifMtu' in IF-MIB."
DEFVAL { 1500 }
::= { cieIfInterfaceEntry 7 }
cieIfContextName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ContextName denotes the interface
'context' and is used to logically separate
the MIB management.
RFC 2571 and RFC 2737 describe this approach.
When the agent supports a different SNMP
context, as detailed in RFC 2571 and
RFC 2737, for different interfaces, then the
value of this object specifies the context
name used for this interface."
DEFVAL { "" }
::= { cieIfInterfaceEntry 8 }
cieIfOperStatusCause OBJECT-TYPE
SYNTAX IfOperStatusReason
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the detailed
operational cause reason for the current
operational state of the interface.
The current operational state of the interface
is given by the 'ifOperStatus' defined
in IF-MIB.
The corresponding instance of
'cieIfOperStatusCauseDescr' must be used to
get the information about the operational
cause value mentioned in this object.
For interfaces whose 'ifOperStatus' is 'down'
the objects 'cieIfOperStatusCause' and
'cieIfOperStatusCauseDescr' together provides
the information about the operational cause
reason and the description of the cause.
The value of this object will be 'none' for
all the 'ifOperStatus' values except for
'down'. Its value will be one status cause
defined in the 'IfOperStatusReason' textual
convention if 'ifOperStatus' is 'down'.
The value of this object will be 'other'
if the operational status cause is not one
defined in 'IfOperStatusReason'."
::= { cieIfInterfaceEntry 9 }
cieIfOperStatusCauseDescr OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description for the cause of current
operational state of the interface, given
by the object 'cieIfOperStatusCause'.
For an interface whose 'ifOperStatus' is not
'down' the value of this object will be
'none'."
::= { cieIfInterfaceEntry 10 }
cieIfSpeedReceive OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the interface's current receive bandwidth in
bits per second. This object is provided for interface with
asymmetric interface speeds like ADSL and should be used in
conjunction with ifSpeed object. For interfaces which do not
vary in bandwidth or for those where no accurate estimation can
be made, this object should contain the nominal bandwidth. If
the bandwidth of the interface is greater than the maximum value
reportable by this object then this object should report its
maximum value (4,294,967,295) and ifHighSpeed must be used to
report the interace's speed. For a sub-layer which has no
concept of bandwidth, this object should be zero."
::= { cieIfInterfaceEntry 11 }
cieIfHighSpeedReceive OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the interface's current receive bandwidth in
units of 1,000,000 bits per second. If this object reports a
value of `n' then the speed of the interface is somewhere in the
range of `n-500,000' to `n+499,999'. For interfaces which do
not vary in bandwidth or for those where no accurate estimation
can be made, this object should contain the nominal bandwidth.
For a sub-layer which has no concept of bandwidth, this object
should be zero."
::= { cieIfInterfaceEntry 12 }
-- Cisco IF Extension Interface Status List Table
cieIfStatusListTable OBJECT-TYPE
SYNTAX SEQUENCE OF CieIfStatusListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects for providing
the 'ifIndex', interface operational mode and
interface operational cause for all the
interfaces in the modules.
This table contains one entry for each
64 interfaces in an module.
This table provides efficient way of encoding
'ifIndex', interface operational mode and
interface operational cause, from the point
of retrieval, by combining the values a set
of 64 interfaces in a single MIB object."
::= { ciscoIfExtensionStats 3 }
cieIfStatusListEntry OBJECT-TYPE
SYNTAX CieIfStatusListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents the 'ifIndex',
interface operational mode and interface
operational cause for a set of 64 interfaces
in a module."
INDEX {
entPhysicalIndex,
cieIfStatusListIndex
}
::= { cieIfStatusListTable 1 }
CieIfStatusListEntry ::= SEQUENCE {
cieIfStatusListIndex Unsigned32,
cieInterfacesIndex InterfaceIndexList,
cieInterfacesOperMode InterfaceOperModeList,
cieInterfacesOperCause InterfaceOperCauseList
}
cieIfStatusListIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..33554432 )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer value, greater than
zero, which identifies a list of 64 interfaces
within a module."
::= { cieIfStatusListEntry 1 }
cieInterfacesIndex OBJECT-TYPE
SYNTAX InterfaceIndexList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the 'ifIndex' for a
set of 64 interfaces in the module."
::= { cieIfStatusListEntry 2 }
cieInterfacesOperMode OBJECT-TYPE
SYNTAX InterfaceOperModeList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the operational mode
for a set of 64 interfaces in the module."
::= { cieIfStatusListEntry 3 }
cieInterfacesOperCause OBJECT-TYPE
SYNTAX InterfaceOperCauseList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the operational status
cause for a set of 64 interfaces in the
module."
::= { cieIfStatusListEntry 4 }
-- Cisco IF Extension System Config
cieSystemMtu OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Global system MTU in octets.
This object specifies the MTU on all interfaces.
However, the value specified by cieIfMtu
takes precedence for an interface, which means
that the interface's MTU uses the value
specified by cieIfMtu, if it is configured."
DEFVAL { 1500 }
::= { ciscoIfExtSystemConfig 1 }
cieLinkUpDownEnable OBJECT-TYPE
SYNTAX BITS {
standard(0),
cisco(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether cieLinkUp/cieLinkDown
or standard mib-II defined linkUp/Down or
both, notifications should be generated
for the interfaces in the system.
'standard' - only generate standard defined
mib-II linkUp/linkDown notification
if 'ifLinkUpDownTrapEnable' for
the interface is 'enabled'.
'cisco' - only generate cieLinkUp/cieLinkDown
notifications for an interface if
the 'ifLinkUpDownTrapEnable' for the
interface is 'enabled'.
If both bits are selected then linkUp/linkDown and
cieLinkUp/cieLinkDown are both generated for an
interface if the 'ifLinkUpDownTrapEnable' for the
interface is 'enabled'."
DEFVAL { { standard } }
::= { ciscoIfExtSystemConfig 2 }
cieStandardLinkUpDownVarbinds OBJECT-TYPE
SYNTAX INTEGER {
standard(1),
additional(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether to send the extra
varbinds in addition to the varbinds defined
in linkUp/linkDown notifications.
'standard' - only send the varbinds defined in
the standard linkUp/linkDown
notification.
'additional' - send the extra varbinds in addition
to the defined ones."
DEFVAL { additional }
::= { ciscoIfExtSystemConfig 3 }
-- Cisco IF Extension Dot1q Custom EtherType Table
cieIfDot1qCustomEtherTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF CieIfDot1qCustomEtherTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of the interfaces that support
the 802.1q custom Ethertype feature."
::= { ciscoIfExtDot1qCustomEtherType 1 }
cieIfDot1qCustomEtherTypeEntry OBJECT-TYPE
SYNTAX CieIfDot1qCustomEtherTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the custom EtherType
information for the interface.
Only interfaces with custom 802.1q
ethertype control are listed in the
table."
INDEX { ifIndex }
::= { cieIfDot1qCustomEtherTypeTable 1 }
CieIfDot1qCustomEtherTypeEntry ::= SEQUENCE {
cieIfDot1qCustomAdminEtherType Integer32,
cieIfDot1qCustomOperEtherType Integer32
}
cieIfDot1qCustomAdminEtherType OBJECT-TYPE
SYNTAX Integer32 (0..65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Dot1qEtherType allow administrator
to select a non-standard (other than 0x8100)
2-byte ethertype for the interface to
interoperate with third party vendor's system
that do not use the standard 0x8100 ethertype
to identify 802.1q-tagged frames.
The current administrative value of the
802.1q ethertype for the interface. The
administrative 802.1q ethertype value may
differ from the operational 802.1q ethertype
value. On some platforms, 802.1q ethertype
may be assigned per group rather than per port.
If multiple ports belong to a port group,
the 802.1q ethertype assigned to any of
the ports in such group will apply to all
ports in the same group.
To configure non-standard dot1q ethertype