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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
|
CISCOSB-CDP-MIB DEFINITIONS ::= BEGIN
-- Title: CISCOSB CDP ROS
-- This Private MIB provides the port and global information concerning CDP protocol
-- Version: 7.47
-- Date: 14 Sep 2008
IMPORTS
switch001, rndNotifications FROM CISCOSB-MIB
rndErrorDesc, rndErrorSeverity FROM CISCOSB-DEVICEPARAMS-MIB
InetAddressType, InetAddress FROM INET-ADDRESS-MIB
OBJECT-TYPE, IpAddress, Unsigned32,
MODULE-IDENTITY,Counter32 FROM SNMPv2-SMI
DisplayString,
TEXTUAL-CONVENTION,
MacAddress,
TruthValue FROM SNMPv2-TC
PortList FROM Q-BRIDGE-MIB
VlanId FROM Q-BRIDGE-MIB
InterfaceIndexOrZero, InterfaceIndex FROM IF-MIB
CiscoNetworkProtocol,
CiscoNetworkAddress FROM CISCO-TC
cdpCacheEntry,
cdpCacheIfIndex,
cdpCacheDeviceIndex FROM CISCO-CDP-MIB;
rlCdp MODULE-IDENTITY
LAST-UPDATED "201102150000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"
DESCRIPTION
"The private MIB module definition for CDP protocol."
REVISION "200809140000Z"
DESCRIPTION
"Initial revision."
REVISION "201008110000Z"
DESCRIPTION
"Added rlCdpLogMismatchVoiceVlanEnable, rlCdpLogMismatchNativeVlanEnable"
REVISION "201010250000Z"
DESCRIPTION
"Added rlCdpSecondaryCacheTable.
Added maxNeighborsExceededInSecondaryCache.
Renamed maxNeighborsExceeded to maxNeighborsExceededInMainCache."
REVISION "201011100000Z"
DESCRIPTION
"Added rlCdpGlobalLogMismatchDuplexEnable.
Added rlCdpGlobalLogMismatchVoiceVlanEnable.
Added rlCdpGlobalLogMismatchNativeVlanEnable."
REVISION "201011140000Z"
DESCRIPTION
"Added rlCdpTlvTable.
Added rlCdpAdvertiseApplianceTlv."
REVISION "201101090000Z"
DESCRIPTION
"Added rlCdpValidateMandatoryTlvs."
REVISION "201102150000Z"
DESCRIPTION
"Added rlCdpLogMismatchDuplexTrap.
Added rlCdpLogMismatchVoiceVlanTrap.
Added rlCdpLogMismatchNativeVlanTrap."
REVISION "201202140000Z"
DESCRIPTION
"Added rlCdpTlvSysName to rlCdpTlvTable."
REVISION "201503040000Z"
DESCRIPTION
"Added rlCdpTlvPowerRequestTable.
Added rlCdpSecondaryCacheAddressTable.
Added rlCdpSecondaryCacheRequestedPowerTable.
Added rlCdpTlvPowerConsumption,
rlCdpTlvPowerRequestedRequestId,
rlCdpTlvPowerRequestedPowerManagementId,
rlCdpTlvSparePairPoECapabilities
to rlCdpTlvEntry.
Added rlCdpSecondaryCachePowerAvailable,
rlCdpSecondaryCachePowerConsumption,
rlCdpSecondaryCacheSparePairPoECapabilities,
rlCdpSecondaryCacheDeviceId,
rlCdpSecondaryCachePortId
to rlCdpSecondaryCacheEntry."
REVISION "201603300000Z"
DESCRIPTION
"Added rlCdpSecondaryCachePowerAvailableManagementPowerLevel,
rlCdpSecondaryCachePowerAvailableRequestId,
rlCdpSecondaryCachePowerAvailablePowerManagementId,
rlCdpSecondaryCachePowerRequestedPowerManagementId,
rlCdpSecondaryCachePowerRequestedRequestId."
::= { switch001 137 }
RlCdpVersionTypes ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"version-v1 - cdp version 1
version-v2 - cdp version 2 "
SYNTAX INTEGER {
version-v1(1),
version-v2(2)
}
RlCdpCounterTypes ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
" v1OutputPackets counter specifies the number of sent CDP packets with version 1
v2OutputPackets counter specifies the number of sent CDP packets with version 2
v1InputPackets counter specifies the number of received CDP packets with version 1
v2InputPackets counter specifies the number of received CDP packets with version 2
totalInputPackets counter specifies the total number of received CDP packets
totalOutputPackets counter specifies the total number of sent CDP packets
illegalChksum counter specifies the number of received CDP packets with illegal checksum.
errorPackets counter specifies the number of received CDP packets with other error (duplicated TLVs, illegal TLVs, etc.)
maxNeighborsExceededInMainCache counter specifies the number of times a CDP neighbor could not be stored in the main cache.
maxNeighborsExceededInSecondaryCache specifies counter the number of times a CDP neighbor could not be stored in the secondary cache. "
SYNTAX INTEGER {
totalInputPackets(1),
v1InputPackets(2),
v2InputPackets(3),
totalOutputPackets(4),
v1OutputPackets(5),
v2OutputPackets(6),
illegalChksum(7),
errorPackets(8),
maxNeighborsExceededInMainCache(9),
maxNeighborsExceededInSecondaryCache(10)
}
RlCdpPduActionTypes ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"filtering - CDP packets would filtered (dropped).
bridging - CDP packets bridged as regular data packets "
SYNTAX INTEGER {
filtering(1),
bridging(2),
flooding(3)
}
-- rlCdpVersionAdvertised
rlCdpVersionAdvertised OBJECT-TYPE
SYNTAX RlCdpVersionTypes
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the verison of sent CDP packets"
::= {rlCdp 1}
-- rlCdpSourceInterface
rlCdpSourceInterface OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifices the CDP source-interface, which the IP address advertised
into TLV is accoding to this source-interface instead
of the outgoing interface.
value of 0 indicates no source interface.
value must belong to an ethernet port/lag "
DEFVAL { 0 }
::= { rlCdp 2 }
-- rlCdpLogMismatchDuplexEnable
rlCdpLogMismatchDuplexEnable OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable logging messages when detecting mishmatch between
advertised and received duplex mode.
To enable loging on specific interface set the corresponing bit."
::= { rlCdp 3 }
-- rlCdpCountersTable
rlCdpCountersTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCdpCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all cdp counter values, indexed by conter name"
::= { rlCdp 4 }
rlCdpCountersEntry OBJECT-TYPE
SYNTAX RlCdpCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table."
INDEX { rlCdpCountersName }
::= { rlCdpCountersTable 1 }
RlCdpCountersEntry ::= SEQUENCE {
rlCdpCountersName RlCdpCounterTypes,
rlCdpCountersValue Counter32
}
rlCdpCountersName OBJECT-TYPE
SYNTAX RlCdpCounterTypes
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"counter name used as key for counters table "
::= {rlCdpCountersEntry 1}
rlCdpCountersValue OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the value of the counter name specisifed by rlCdpCountersName, unsuppo
will have no entry in the tab."
::= {rlCdpCountersEntry 2}
-- rlCdpCountersClear
rlCdpCountersClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"By setting the MIB to True, all error and traffic counters are set to zero."
::= {rlCdp 5}
-- rlCdpCacheClear
rlCdpCacheClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"By setting the MIB to True, all entries from the cdp cache table is deleted."
::= {rlCdp 6}
-- rlCdpVoicevlanId
rlCdpVoiceVlanId OBJECT-TYPE
SYNTAX INTEGER (0..4094)
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"voice vlan Id, used as the Appliance Vlan-Id TLV"
::= {rlCdp 7}
-- Augment to cdpCacheTable
rlCdpCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCdpCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table contains externtion for the cdpCache table.
indexed by cdpCacheEntry."
::= { rlCdp 8 }
rlCdpCacheEntry OBJECT-TYPE
SYNTAX RlCdpCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table."
AUGMENTS { cdpCacheEntry }
::= { rlCdpCacheTable 1 }
RlCdpCacheEntry ::= SEQUENCE {
rlCdpCacheVersionExt DisplayString,
rlCdpCacheTimeToLive INTEGER,
rlCdpCacheCdpVersion RlCdpVersionTypes
}
rlCdpCacheVersionExt OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field contains the extention of the cdpCacheVersion field
in the cdpCache table.
In case the neighbour advertised the SW TLV as a string with length
larger than 160, this field contains the chacters from place 160 and on.
Zero-length strings indicates no Version
field (TLV) was reported in the most recent CDP
message, or it was smaller than 160 chars "
::= { rlCdpCacheEntry 1 }
rlCdpCacheTimeToLive OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field indicates the time remains in seconds
till the entry should be expried. "
::= { rlCdpCacheEntry 2 }
rlCdpCacheCdpVersion OBJECT-TYPE
SYNTAX RlCdpVersionTypes
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field indicates the cdp version that was reported in the most recent CDP
message."
::= { rlCdpCacheEntry 3 }
-- rlCdpPduAction
rlCdpPduAction OBJECT-TYPE
SYNTAX RlCdpPduActionTypes
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines CDP packets handling when CDP is globally disabled."
DEFVAL { bridging }
::= {rlCdp 9}
-- rlCdpLogMismatchVoiceVlanEnable
rlCdpLogMismatchVoiceVlanEnable OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable logging messages when detecting mishmatch between
advertised and received voice VLAN.
To enable logging on specific interface set the corresponing bit."
::= { rlCdp 10 }
-- rlCdpLogMismatchNativeVlanEnable
rlCdpLogMismatchNativeVlanEnable OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable logging messages when detecting mishmatch between
advertised and received native VLAN.
To enable loging on specific interface set the corresponing bit."
::= { rlCdp 11 }
-- rlCdpSecondaryCacheTable
rlCdpSecondaryCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCdpSecondaryCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table contains partial information from cdpCache table.
indexed by rlCdpSecondaryCacheEntry."
::= { rlCdp 12 }
rlCdpSecondaryCacheEntry OBJECT-TYPE
SYNTAX RlCdpSecondaryCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the rlCdpSecondaryCacheTable,
containing partial information received via CDP on one
interface from one device. Entries appear when
a CDP advertisement is received from a neighbor
device. Entries disappear when CDP is disabled
on the interface, globally or when the secondary cache is cleared"
INDEX { cdpCacheIfIndex, cdpCacheDeviceIndex }
::= { rlCdpSecondaryCacheTable 1 }
RlCdpSecondaryCacheEntry ::= SEQUENCE {
rlCdpSecondaryCacheMacAddress MacAddress,
rlCdpSecondaryCachePlatform DisplayString,
rlCdpSecondaryCacheCapabilities OCTET STRING,
rlCdpSecondaryCacheVoiceVlanID Unsigned32,
rlCdpSecondaryCacheTimeToLive INTEGER,
rlCdpSecondaryCachePowerAvailable Unsigned32,
rlCdpSecondaryCachePowerConsumption Unsigned32,
rlCdpSecondaryCacheSparePairPoECapabilities BITS,
rlCdpSecondaryCacheDeviceId DisplayString,
rlCdpSecondaryCachePortId DisplayString,
rlCdpSecondaryCachePowerAvailableManagementPowerLevel Unsigned32,
rlCdpSecondaryCachePowerAvailableRequestId Unsigned32,
rlCdpSecondaryCachePowerAvailablePowerManagementId Unsigned32,
rlCdpSecondaryCachePowerRequestedPowerManagementId Unsigned32,
rlCdpSecondaryCachePowerRequestedRequestId Unsigned32
}
rlCdpSecondaryCacheMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address of the neighbor."
::= { rlCdpSecondaryCacheEntry 3 }
rlCdpSecondaryCachePlatform OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Device's Hardware Platform prefix, as reported in the most
recent CDP message. The zero-length string indicates
that no Platform field (TLV) was reported in the most
recent CDP message."
::= { rlCdpSecondaryCacheEntry 4 }
rlCdpSecondaryCacheCapabilities OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Device's Functional Capabilities as reported in the
most recent CDP message."
::= { rlCdpSecondaryCacheEntry 5 }
rlCdpSecondaryCacheVoiceVlanID OBJECT-TYPE
SYNTAX Unsigned32 (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote device's VoIP VLAN ID, as reported in the
most recent CDP message. This object is not instantiated if
no Appliance VLAN-ID field (TLV) was reported in the most
recently received CDP message."
::= { rlCdpSecondaryCacheEntry 6 }
rlCdpSecondaryCacheTimeToLive OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field indicates the number of seconds
till the entry is expried. "
::= { rlCdpSecondaryCacheEntry 7 }
rlCdpSecondaryCachePowerAvailable OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote device's available power, as reported in the
most recent CDP message.
A value of 0xFFFFFFFF indicates that no Power Available TLV
was reported in the most recently received CDP message."
::= { rlCdpSecondaryCacheEntry 8 }
rlCdpSecondaryCachePowerConsumption OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote device's consumed power, as reported in the
most recent CDP message.
A value of 0xFFFFFFFF indicates that no Power Consumption TLV
was reported in the most recently received CDP message."
::= { rlCdpSecondaryCacheEntry 9 }
rlCdpSecondaryCacheSparePairPoECapabilities OBJECT-TYPE
SYNTAX BITS {
supported(0),
detectionClassificationRequired(1),
desiredState(2),
operationalState(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote device's Spare-Pair (4-wire) Power-Over-Ethernet negotiation capabilities.
The bit 'supported(0)' indicates that the device supports Spare Pair POE.
The bit 'detectionClassificationRequired(1)' indicates that the device requires
detection/classification on the spare-pair.
The bit 'desiredState(2)' indicates whether the PD device desires power
on the spare pair.
The bit 'operationalState(3)' indicates whether the PSE device supplies power
on the spare pair."
::= { rlCdpSecondaryCacheEntry 10 }
rlCdpSecondaryCacheDeviceId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote device's Device-ID prefix, as reported in the most
recent CDP message. The zero-length string indicates
that no Device-ID TLV was reported in the most recent CDP message."
::= { rlCdpSecondaryCacheEntry 11 }
rlCdpSecondaryCachePortId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote device's Port-ID prefix, as reported in the most
recent CDP message. The zero-length string indicates
that no Port-ID TLV was reported in the most recent CDP message."
::= { rlCdpSecondaryCacheEntry 12 }
rlCdpSecondaryCachePowerAvailableManagementPowerLevel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote device's Management Power Level, as reported in the
most recent CDP message Power Available TLV.
A value of zero indicates that no Power Available TLV
was reported in the most recently received CDP message."
::= { rlCdpSecondaryCacheEntry 13 }
rlCdpSecondaryCachePowerAvailableRequestId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote device's echoed Request ID, as reported in the
most recent CDP message Power Available TLV.
A value of zero indicates that no Power Available TLV
was reported in the most recently received CDP message."
::= { rlCdpSecondaryCacheEntry 14 }
rlCdpSecondaryCachePowerAvailablePowerManagementId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote device's Power Management ID, as reported in the
most recent CDP message Power Available TLV.
A value of zero indicates that no Power Available TLV
was reported in the most recently received CDP message."
::= { rlCdpSecondaryCacheEntry 15 }
rlCdpSecondaryCachePowerRequestedPowerManagementId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote device's echoed Power Management ID, as reported in the
most recent CDP message Power Requested TLV.
A value of zero indicates that no Power Requested TLV
was reported in the most recently received CDP message."
::= { rlCdpSecondaryCacheEntry 16 }
rlCdpSecondaryCachePowerRequestedRequestId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote device's Request ID, as reported in the
most recent CDP message Power Requested TLV.
A value of zero indicates that no Power Requested TLV
was reported in the most recently received CDP message."
::= { rlCdpSecondaryCacheEntry 17 }
-------------------------------------------------------------------------------
rlCdpGlobalLogMismatchDuplexEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Globally enable/disable logging messages when detecting mishmatch between
advertised and received duplex mode."
DEFVAL { true }
::= { rlCdp 13 }
rlCdpGlobalLogMismatchVoiceVlanEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Globally enable/disable logging messages when detecting mishmatch between
advertised and received voice VLAN."
DEFVAL { true }
::= { rlCdp 14 }
rlCdpGlobalLogMismatchNativeVlanEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Globally enable/disable logging messages when detecting mishmatch between
advertised and received native VLAN."
DEFVAL { true }
::= { rlCdp 15 }
-- rlCdpTlvTable
rlCdpTlvTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCdpTlvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table contains the local advertised information.
indexed by rlCdpTlvEntry."
::= { rlCdp 16 }
rlCdpTlvEntry OBJECT-TYPE
SYNTAX RlCdpTlvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the rlCdpTlvTable,
containing local information advertised by CDP on one
interface. Entries are available only when CDP is globally enabled,
for interfaces on which CDP is enabled and the interface state is UP."
INDEX { rlCdpTlvIfIndex }
::= { rlCdpTlvTable 1 }
RlCdpTlvEntry ::= SEQUENCE {
rlCdpTlvIfIndex Unsigned32,
rlCdpTlvDeviceIdFormat INTEGER,
rlCdpTlvDeviceId DisplayString,
rlCdpTlvAddress1Type InetAddressType,
rlCdpTlvAddress1 InetAddress,
rlCdpTlvAddress2Type InetAddressType,
rlCdpTlvAddress2 InetAddress,
rlCdpTlvAddress3Type InetAddressType,
rlCdpTlvAddress3 InetAddress,
rlCdpTlvPortId DisplayString,
rlCdpTlvCapabilities OCTET STRING,
rlCdpTlvVersion DisplayString,
rlCdpTlvPlatform DisplayString,
rlCdpTlvNativeVLAN Unsigned32,
rlCdpTlvDuplex INTEGER,
rlCdpTlvApplianceID Unsigned32,
rlCdpTlvApplianceVlanID Unsigned32,
rlCdpTlvExtendedTrust INTEGER,
rlCdpTlvCosForUntrustedPorts Unsigned32,
rlCdpTlvPowerAvailableRequestId Unsigned32,
rlCdpTlvPowerAvailablePowerManagementId Unsigned32,
rlCdpTlvPowerAvailable Unsigned32,
rlCdpTlvPowerAvailableManagementPowerLevel Unsigned32,
rlCdpTlvSysName DisplayString,
rlCdpTlvPowerConsumption Unsigned32,
rlCdpTlvPowerRequestedRequestId Unsigned32,
rlCdpTlvPowerRequestedPowerManagementId Unsigned32,
rlCdpTlvSparePairPoECapabilities BITS
}
rlCdpTlvIfIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value of the local interface.
A value of zero is used to access TLVs which do not
changed between interfaces."
::= { rlCdpTlvEntry 1 }
rlCdpTlvDeviceIdFormat OBJECT-TYPE
SYNTAX INTEGER {
serialNumber(1),
macAddress(2),
other(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of the format of Device-Id contained in the
corresponding instance of rlCdpTlvDeviceId.
serialNumber(1) indicates that the value of rlCdpTlvDeviceId
object is in the form of an ASCII string contain the device
serial number.
macAddress(2) indicates that the value of rlCdpTlvDeviceId
object is in the form of Layer 2 MAC address.
other(3) indicates that the value of rlCdpTlvDeviceId object
is in the form of a platform specific ASCII string contain
info that identifies the device. For example: ASCII string
contains serialNumber appended/prepened with system name."
::= { rlCdpTlvEntry 2 }
rlCdpTlvDeviceId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Device-ID string as will be advertised in subsequent CDP
messages."
::= { rlCdpTlvEntry 3 }
rlCdpTlvAddress1Type OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Inet address type of rlCdpTlvAddress1"
::= { rlCdpTlvEntry 4 }
rlCdpTlvAddress1 OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The (first) network-layer address of the device
as will be advertised in the Address TLV of subsequent
CDP messages. For example, if the corresponding instance of
rlCdpTlvAddress1Type had the value 'ipv4(1)', then this object
would be an IPv4-address."
::= { rlCdpTlvEntry 5 }
rlCdpTlvAddress2Type OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Inet address type of rlCdpTlvAddress2"
::= { rlCdpTlvEntry 6 }
rlCdpTlvAddress2 OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The (first) network-layer address of the device
as will be advertised in the Address TLV of subsequent
CDP messages. For example, if the corresponding instance of
rlCdpTlvAddress2Type had the value 'ipv6(2)', then this object
would be an IPv6-address."
::= { rlCdpTlvEntry 7 }
rlCdpTlvAddress3Type OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Inet address type of rlCdpTlvAddress3"
::= { rlCdpTlvEntry 8 }
rlCdpTlvAddress3 OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The (first) network-layer address of the device
as will be advertised in the Address TLV of subsequent
CDP messages. For example, if the corresponding instance of
rlCdpTlvAddress3Type had the value 'ipv6(2)', then this object
would be an IPv6-address."
::= { rlCdpTlvEntry 9 }
rlCdpTlvPortId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Port-ID string as will be advertised in subsequent CDP messages from
this interface. This will typically be the value of the ifName
object (e.g., 'Ethernet0')."
::= { rlCdpTlvEntry 10 }
rlCdpTlvCapabilities OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Device's Functional Capabilities as will be advertised in
subsequent CDP messages. For latest set of specific
values, see the latest version of the CDP specification."
REFERENCE "Cisco Discovery Protocol Specification, 10/19/94."
::= { rlCdpTlvEntry 11 }
rlCdpTlvVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Version string as will be advertised in subsequent CDP messages."
::= { rlCdpTlvEntry 12 }
rlCdpTlvPlatform OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Device's Hardware Platform as will be advertised in subsequent
CDP messages."
::= { rlCdpTlvEntry 13 }
rlCdpTlvNativeVLAN OBJECT-TYPE
SYNTAX Unsigned32 (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local device's interface's native VLAN, as will be
advertised in subsequent CDP messages."
::= { rlCdpTlvEntry 14 }
rlCdpTlvDuplex OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
halfduplex(2),
fullduplex(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local device's interface's duplex mode, as will be advertised
in subsequent CDP messages."
::= { rlCdpTlvEntry 15 }
rlCdpTlvApplianceID OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local device's Appliance ID, as will be advertised in subsequent
CDP messages. A value of zero denotes no Appliance VLAN-ID TLV will be
advertised in subsequent CDP messages."
::= { rlCdpTlvEntry 16 }
rlCdpTlvApplianceVlanID OBJECT-TYPE
SYNTAX Unsigned32 (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local device's VoIP VLAN ID, as will be advertised in subsequent
CDP messages. A value of zero denotes no Appliance VLAN-ID TLV will be
advertised in subsequent CDP messages."
::= { rlCdpTlvEntry 17 }
rlCdpTlvExtendedTrust OBJECT-TYPE
SYNTAX INTEGER {
untrusted(0),
trusted(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local device's interface's extended trust mode, as will be advertised
in subsequent CDP messages. A value of zero indicates the absence of extended
trust."
::= { rlCdpTlvEntry 18 }
rlCdpTlvCosForUntrustedPorts OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The COS value with which all packets received on an
untrusted port should be marked by a simple switching device
which cannot itself classify individual packets.
This TLV only has any meaning if corresponding instance of rlCdpTlvExtendedTrust
indicates the absence of extended trust."
::= { rlCdpTlvEntry 19 }
rlCdpTlvPowerAvailableRequestId OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Power Available TLV Request-ID field echoes the Request-ID field
last received in a Power Requested TLV. It is 0 if no Power Requested TLV
has been received since the interface last transitioned to ifOperState == Up."
::= { rlCdpTlvEntry 20 }
rlCdpTlvPowerAvailablePowerManagementId OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Power Available TLV Power-Management-ID field."
::= { rlCdpTlvEntry 21 }
rlCdpTlvPowerAvailable OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Power Available TLV Available-Power field indicates the
number of milliwatts of power available to powered devices at the
time this object is instatiated.
A value of 0xFFFFFFFF indicates that the Power Available TLV is not advertised."
::= { rlCdpTlvEntry 22 }
rlCdpTlvPowerAvailableManagementPowerLevel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Power Available TLV Management-Power-Level field indicates the
number of milliwatts representing the supplier's request to the powered
device for its Power Consumption TLV. A value of 0xFFFFFFFF indicates
the local device has no preference."
::= { rlCdpTlvEntry 23 }
rlCdpTlvSysName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sysName MIB as will be advertised in subsequent CDP messages."
::= { rlCdpTlvEntry 24 }
rlCdpTlvPowerConsumption OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of Power Consumption TLV indicates the maximum amount of
power, in milliwatts, expected to be obtained and consumed from
the interface over which the CDP packet is sent.
A value of 0xFFFFFFFF indicates the TLV is not advertised."
::= { rlCdpTlvEntry 25 }
rlCdpTlvPowerRequestedRequestId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Power Requested TLV Request-ID field.
A value of zero indicates that the Power Requested TLV is not advertised."
::= { rlCdpTlvEntry 26 }
rlCdpTlvPowerRequestedPowerManagementId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Power Requested TLV Power-Management-ID field echoes the Management-
Power-ID field in the last received Power Available TLV, or to 0,
if no Power Available TLV has been received."
::= { rlCdpTlvEntry 27 }
rlCdpTlvSparePairPoECapabilities OBJECT-TYPE
SYNTAX BITS {
supported(0),
detectionClassificationRequired(1),
desiredState(2),
operationalState(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The capabilities advertised in the Spare-Pair POE TLV.
The bit 'supported(0)' indicates that the device supports Spare Pair POE.
The bit 'detectionClassificationRequired(1)' indicates that the device requires
detection/classification on the spare-pair.
The bit 'desiredState(2)' indicates whether the PD device desires power
on the spare pair.
The bit 'operationalState(3)' indicates whether the PSE device supplies power
on the spare pair."
::= { rlCdpTlvEntry 28 }
-- rlCdpTlvPowerRequestTable
rlCdpTlvPowerRequestTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCdpTlvPowerRequestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table contains the local advertised requested power levels
in Power Requested TLV.
indexed by rlCdpTlvPowerRequestEntry."
::= { rlCdp 21 }
rlCdpTlvPowerRequestEntry OBJECT-TYPE
SYNTAX RlCdpTlvPowerRequestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the rlCdpTlvPowerRequestTable,
containing locally requested power levels advertised by CDP on one
interface. Entries are available only when CDP is globally enabled,
for interfaces on which CDP is enabled and the interface state is UP."
INDEX { rlCdpTlvIfIndex, rlCdpTlvPowerRequestPowerLevelIndex }
::= { rlCdpTlvPowerRequestTable 1 }
RlCdpTlvPowerRequestEntry ::= SEQUENCE {
rlCdpTlvPowerRequestPowerLevelIndex Unsigned32,
rlCdpTlvPowerRequestPowerLevel Unsigned32
}
rlCdpTlvPowerRequestPowerLevelIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index to the list of Requested-Power-Level in Power Requested TLV."
::= { rlCdpTlvPowerRequestEntry 2 }
rlCdpTlvPowerRequestPowerLevel OBJECT-TYPE
SYNTAX Unsigned32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A possible value of the Power Consumption TLV, in milliwatts"
::= { rlCdpTlvPowerRequestEntry 3 }
--------------------------------------------------------------------------------
-- rlCdpSecondaryCacheAddressTable
rlCdpSecondaryCacheAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCdpSecondaryCacheAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table containing the list of
network-layer addresses of a neighbor interface,
as reported in the Address TLV of the most recently
received CDP message and stored in the secondary cache."
::= { rlCdp 22 }
rlCdpSecondaryCacheAddressEntry OBJECT-TYPE
SYNTAX RlCdpSecondaryCacheAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the rlCdpSecondaryCacheAddressTable,
containing the list of network-layer addresses of a neighbor interface,
as reported in the Address TLV of the most recently received CDP message
and stored in the secondary cache. Entries are available only when CDP is
globally enabled, for interfaces on which CDP is enabled and the interface
state is UP."
INDEX { cdpCacheIfIndex, cdpCacheDeviceIndex, rlCdpSecondaryCacheAddressIndex }
::= { rlCdpSecondaryCacheAddressTable 1 }
RlCdpSecondaryCacheAddressEntry ::= SEQUENCE {
rlCdpSecondaryCacheAddressIndex INTEGER,
rlCdpSecondaryCacheAddressType CiscoNetworkProtocol,
rlCdpSecondaryCacheAddress CiscoNetworkAddress
}
rlCdpSecondaryCacheAddressIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the address entry for a given
cdpCacheIfIndex,cdpCacheDeviceIndex pair."
::= { rlCdpSecondaryCacheAddressEntry 3 }
rlCdpSecondaryCacheAddressType OBJECT-TYPE
SYNTAX CiscoNetworkProtocol
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of the type of address contained in the
corresponding instance of rlCdpSecondaryCacheAddress"
::= { rlCdpSecondaryCacheAddressEntry 4 }
rlCdpSecondaryCacheAddress OBJECT-TYPE
SYNTAX CiscoNetworkAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A network-layer address of the device as reported in the most
recent CDP message's Address TLV. For example, if the the
corresponding instance of rlCdpSecondaryCacheAddressType had the
value 'ip(1)', then this object would be an IPv4-address."
::= { rlCdpSecondaryCacheAddressEntry 5 }
--------------------------------------------------------------------------------
-- rlCdpSecondaryCacheRequestedPowerTable
rlCdpSecondaryCacheRequestedPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCdpSecondaryCacheRequestedPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table containing the list of
requested power levels by a remote device,
as reported in the Power Requested TLV of the most recently
received CDP message and stored in the secondary cache."
::= { rlCdp 23 }
rlCdpSecondaryCacheRequestedPowerEntry OBJECT-TYPE
SYNTAX RlCdpSecondaryCacheRequestedPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the rlCdpSecondaryCacheRequestedPowerTable,
containing the list of requested power levels by a remote device,
as reported in the Power Requested TLV of the most recently received CDP message
and stored in the secondary cache. Entries are available only when CDP is
globally enabled, for interfaces on which CDP is enabled and the interface
state is UP."
INDEX { cdpCacheIfIndex, cdpCacheDeviceIndex, rlCdpSecondaryCacheRequestedPowerIndex }
::= { rlCdpSecondaryCacheRequestedPowerTable 1 }
RlCdpSecondaryCacheRequestedPowerEntry ::= SEQUENCE {
rlCdpSecondaryCacheRequestedPowerIndex INTEGER,
rlCdpSecondaryCacheRequestedPowerLevel Unsigned32
}
rlCdpSecondaryCacheRequestedPowerIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the requested power level entry for a given
cdpCacheIfIndex,cdpCacheDeviceIndex pair."
::= { rlCdpSecondaryCacheRequestedPowerEntry 3 }
rlCdpSecondaryCacheRequestedPowerLevel OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A requested power level in the Power Requested TLV, in milliwatts."
::= { rlCdpSecondaryCacheRequestedPowerEntry 4 }
--------------------------------------------------------------------------------
rlCdpAdvertiseApplianceTlv OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"By setting the MIB to True Appliance VLAN-ID TLV may be advertised.
A value of False will prevent this TLV from being advertised."
DEFVAL { true }
::= {rlCdp 17}
rlCdpValidateMandatoryTlvs OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"By setting the MIB to true all mandatory TLVs 0x0001-0x0006 will be validated.
Incoming CDP frames without any of the TLVs will be dropped.
A value of false indicates that only the Device ID TLV (0x0001) is mandatory.
Frames containing Device ID TLV will be processed,
regardless of whether other TLVs are present or not."
DEFVAL { true }
::= {rlCdp 18}
-- rlCdpInterfaceCountersPTable
rlCdpInterfaceCountersTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCdpInterfaceCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all CDP counter values, indexed by interface id."
::= { rlCdp 19 }
rlCdpInterfaceCountersEntry OBJECT-TYPE
SYNTAX RlCdpInterfaceCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table."
INDEX { rlCdpInterfaceId }
::= { rlCdpInterfaceCountersTable 1 }
RlCdpInterfaceCountersEntry ::= SEQUENCE {
rlCdpInterfaceId InterfaceIndex,
rlCdpInterfaceTotalInputPackets Counter32,
rlCdpInterfaceV1InputPackets Counter32,
rlCdpInterfaceV2InputPackets Counter32,
rlCdpInterfaceTotalOutputPackets Counter32,
rlCdpInterfaceV1OutputPackets Counter32,
rlCdpInterfaceV2OutputPackets Counter32,
rlCdpInterfaceIllegalChksum Counter32,
rlCdpInterfaceErrorPackets Counter32,
rlCdpInterfaceMaxNeighborsExceededInMainCache Counter32,
rlCdpInterfaceMaxNeighborsExceededInSecondaryCache Counter32
}
rlCdpInterfaceId OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Interface id, used as index for interface counters table."
::= {rlCdpInterfaceCountersEntry 1}
rlCdpInterfaceTotalInputPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Num of received packets on rlCdpInterfaceId"
::= {rlCdpInterfaceCountersEntry 2}
rlCdpInterfaceV1InputPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Num of v1 received packets on rlCdpInterfaceId"
::= {rlCdpInterfaceCountersEntry 3}
rlCdpInterfaceV2InputPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Num of v2 received packets on rlCdpInterfaceId"
::= {rlCdpInterfaceCountersEntry 4}
rlCdpInterfaceTotalOutputPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Num of sent packets from rlCdpInterfaceId"
::= {rlCdpInterfaceCountersEntry 5}
rlCdpInterfaceV1OutputPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Num of v1 sent packets from rlCdpInterfaceId"
::= {rlCdpInterfaceCountersEntry 6}
rlCdpInterfaceV2OutputPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Num of v2 sent packets from rlCdpInterfaceId"
::= {rlCdpInterfaceCountersEntry 7}
rlCdpInterfaceIllegalChksum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Num of received packets with illegal CDP checksum."
::= {rlCdpInterfaceCountersEntry 8}
rlCdpInterfaceErrorPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"specifies the number of received CDP packets with other error (duplicated TLVs, illegal TLVs, etc.) "
::= {rlCdpInterfaceCountersEntry 9}
rlCdpInterfaceMaxNeighborsExceededInMainCache OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"specifies the number of times a CDP neighbor could not be stored in the main cache. "
::= {rlCdpInterfaceCountersEntry 10}
rlCdpInterfaceMaxNeighborsExceededInSecondaryCache OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" specifies the number of times a CDP neighbor could not be stored in the secondary cache."
::= {rlCdpInterfaceCountersEntry 11}
rlCdpInterfaceCountersClear OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"By setting the scalar to a interface id , all error and traffic counters of this interface
are set to zero.
To clear the counters for ALL interfaces set the scalar to 0x0FFFFFFF"
::= {rlCdp 20}
--------------------------------------------------------------------------------
-- TRAPS
--------------------------------------------------------------------------------
rlCdpLogMismatchDuplexTrap NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Warning trap indicating that duplex mismatch has been detected by CDP"
::= { rndNotifications 224 }
rlCdpLogMismatchVoiceVlanTrap NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Warning trap indicating that voice vlan mismatch has been detected by CDP"
::= { rndNotifications 225 }
rlCdpLogMismatchNativeVlanTrap NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Warning trap indicating that native vlan mismatch has been detected by CDP"
::= { rndNotifications 226 }
END
|