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
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
|
CTRON-BDG-MIB DEFINITIONS ::= BEGIN
-- ctron-bdg-mib.txt
-- Part Number: 2170561-01
-- Revision: 1.01.01
-- Date: June 22, 1996
-- Cabletron Systems, Inc.
-- 35 Industrial Way, P.O. Box 5005
-- Rochester, NH 03867-0505
-- (603) 332-9400
-- support@ctron.com
-- This module provides authoritative definitions for Cabletron's
-- enterprise-specific common MIB.
--
-- This module will be extended, as required.
--
-- Cabletron Systems reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Cabletron Systems
-- to determine whether any such changes have been made.
--
-- In no event shall Cabletron Systems be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Cabletron
-- Systems has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Cabletron grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Cabletron products.
-- Copyright August 95 Cabletron Systems
IMPORTS
OBJECT-TYPE FROM RFC-1212
bridge, layerMgmt
FROM IRM-OIDS
Counter FROM RFC1155-SMI;
bridgeRev1 OBJECT IDENTIFIER ::= { bridge 1 }
bdgdevice OBJECT IDENTIFIER ::= { bridgeRev1 1 }
bdgPort OBJECT IDENTIFIER ::= { bridgeRev1 2 }
filterDB OBJECT IDENTIFIER ::= { bridgeRev1 3 }
trapTypes OBJECT IDENTIFIER ::= { bridgeRev1 4 }
bdgTables OBJECT IDENTIFIER ::= { bridgeRev1 5 }
acqDB OBJECT IDENTIFIER ::= { filterDB 1 }
permDB OBJECT IDENTIFIER ::= { filterDB 2 }
specialDB OBJECT IDENTIFIER ::= { filterDB 3 }
acqStats OBJECT IDENTIFIER ::= { acqDB 1 }
acqOptions OBJECT IDENTIFIER ::= { acqDB 2 }
permStats OBJECT IDENTIFIER ::= { permDB 1 }
permOptions OBJECT IDENTIFIER ::= { permDB 2 }
specStats OBJECT IDENTIFIER ::= { specialDB 1 }
specFilters OBJECT IDENTIFIER ::= { specialDB 2 }
-- Device Object Definitions
--
-- This section defines the objects under the Device node.
--
-- Instance Identifiers for Device Objects
--
-- There is only one instance of a Device object, thus the Instance
-- Identifier is 0.
--
-- Device Objects
bdgdeviceDisableBdg OBJECT-TYPE
SYNTAX INTEGER
{
disableBridge (0),
enableBridge (1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates if the bridge will be disabled."
::= { bdgdevice 1 }
bdgdeviceRestoreSettings OBJECT-TYPE
SYNTAX INTEGER
{
restoreSettings (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Restore the following settings to their default values:
Bridge Name to ETHERNET_BRIDGE,
Location to LOCAL,
Port 1 Name to PORT_1,
Port 2 Name to PORT_2,
Port 1 Network Name to LAN_1,
Port 2 Network Name to LAN_2,
Ageing Time for Acquired Database to 300 seconds,
Erase the acquired database,
Erase the permanent database,
Place sixteen default multicast addresses into
the permanent and acquired databases,
Type of Spanning Tree to 802.1,
Type of Filtering to IEEE 802.1,
Bridge Max Age to 20 seconds,
Bridge Forward Delay to 15 seconds,
Bridge Hello Time to 2 seconds,
Bridge Priority to 8000,
Port 1 Priority to 80,
Port 2 Priority to 80,
Port 1 Path Cost to 100,
Port 2 Path Cost to 100,
Restart the bridge."
::= { bdgdevice 2 }
bdgdeviceBdgName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The user-defined name (up to 32 characters long) of the bridge.
The default bridge name is ETHERNET_BRIDGE."
::= { bdgdevice 4 }
bdgdeviceNumPorts OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ports present on the bridge."
::= { bdgdevice 5 }
bdgdeviceType OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of bridge, NB25E, IRBM, or NB20E."
::= { bdgdevice 6 }
bdgdeviceVersion OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The release version of the firmware installed in the bridge."
::= { bdgdevice 7 }
bdgdeviceLocation OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The user-defined name to indicate the location of the bridge on
the network. The default location name is LOCAL."
::= { bdgdevice 8 }
bdgdeviceStatus OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the bridge, ON-LINE, STAND BY or DISABLED."
::= { bdgdevice 9 }
bdgdeviceRestartBdg OBJECT-TYPE
SYNTAX INTEGER
{
restartBridge (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Force the bridge to undergo a software reset."
::= { bdgdevice 10 }
bdgdeviceFrFwd OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames forwarded by the bridge."
::= { bdgdevice 11 }
bdgdeviceFrRx OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames received by the bridge."
::= { bdgdevice 12 }
bdgdeviceFrFlt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames filtered by the bridge."
::= { bdgdevice 13 }
bdgdeviceErr OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of network errors that have occurred."
::= { bdgdevice 14 }
bdgdeviceSwitchSetting OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current switch settings read from the bridge
hardware."
::= { bdgdevice 15 }
bdgdeviceNumRestarts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the bridge has been powered up or restarted."
::= { bdgdevice 16 }
bdgdeviceTypeFiltering OBJECT-TYPE
SYNTAX INTEGER
{
ieee8021 (0),
specialDB (1),
both (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The type of filtering to be performed by the bridge. The default
is IEEE 802.1."
::= { bdgdevice 17 }
bdgdeviceSTAProtocol OBJECT-TYPE
SYNTAX INTEGER
{
ieee8021 (0),
dec (1),
none (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The spanning tree algorithm under which the bridge is operating.
The selections are as follows:
- IEEE 802.1 compliant spanning tree algorithm
environment (802.1)
- DEC LAN Bridge 100 environment (DEC)
- Without the spanning tree algorithm enabled (NONE)
The default is 802.1."
::= { bdgdevice 18 }
bdgdeviceBridgeID OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The unique identifier of the bridge. The first two bytes of the
identifier are the bridge priority and the last six bytes are the
Ethernet address."
::= { bdgdevice 19 }
bdgdeviceTopChgCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the bridge's Topology Change Flag has been
changed since the bridge was powered up or initialized."
::= { bdgdevice 20 }
bdgdeviceRootCost OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The cost of the path to the root from this bridge."
::= { bdgdevice 21 }
bdgdeviceRootPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port identifier for the port which offers the lowest cost
path to the root, i.e. that port for which the sum of the values
of the designated cost and path cost parameters held for the port
is lowest."
::= { bdgdevice 22 }
bdgdeviceHelloTime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time interval between the transmission of Configuration
BPDU's by a bridge which is attempting to become the root or is
the root."
::= { bdgdevice 23 }
bdgdeviceBdgMaxAge OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of the Max Age parameter when the bridge is the root
or is attempting to become the root. A time of 6 to 40 seconds is
allowed. The default is 20 seconds."
::= { bdgdevice 24 }
bdgdeviceBdgFwdDly OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of the forward delay parameter when the bridge is the
root or is attempting to become the root. A time of 4 to 30
seconds is allowed."
::= { bdgdevice 25 }
bdgdeviceTimeTopChg OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time in seconds that has elapsed since the bridge's Topology
Change Flag last recorded the value of a topology change."
::= { bdgdevice 26 }
bdgdeviceTopChg OBJECT-TYPE
SYNTAX INTEGER
{
noTopologyChangeInProgress (0),
topologyChangeInProgress (1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates if a bridge topology change is in progress."
::= { bdgdevice 27 }
bdgdeviceDesigRoot OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The unique identifier of the bridge recorded as the root."
::= { bdgdevice 28 }
bdgdeviceMaxAge OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum age of received protocol information before it is
discarded."
::= { bdgdevice 29 }
bdgdeviceHoldTime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minimum time period elapsing between the transmission of
configuration BPDU's through a given bridge port."
::= { bdgdevice 30 }
bdgdeviceFwdDly OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time spent in the listening state while moving from the
blocking state to the learning state, or the time spent in the
learning state while moving from the listening state to the
forwarding state."
::= { bdgdevice 31 }
bdgdeviceBdgHello OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of the Hello Time parameter when the bridge is the
root or is attempting to become the root. A time of 1 to 10
seconds is allowed. The default is 2 seconds."
::= { bdgdevice 32 }
bdgdeviceBdgPriority OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The part of the bridge address that contains the identifier used
in the spanning tree for priority comparisons. Allowed range is 0
through FFFF. The default is 8000."
::= { bdgdevice 33 }
bdgdeviceResetCounts OBJECT-TYPE
SYNTAX INTEGER
{
resetCounts (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reset all counters to zero."
::= { bdgdevice 34 }
bdgdeviceUptime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time, in seconds, that has elapsed since the bridge was last
reset or initialized."
::= { bdgdevice 35 }
bdgdeviceTrapType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the object identifier of the first VarBinding in the
last trap generated by the bridge."
::= { bdgdevice 36 }
-- Port Object Definitions
--
-- This section defines the objects under the Port node.
--
-- Instance Identifiers for Port Objects
--
-- The Instance Identifier for port objects is the number of the port on
-- the bridge. Valid instance identifiers for the ports on the IRBM,
-- NB25E, and NB20E bridges are 1 and 2.
--
-- Port Objects
bdgPortAddress OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Ethernet address of the port."
::= { bdgPort 1 }
bdgPortName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The user-defined name assigned to the port. The default port 1
name is PORT_1 and the default Port 2 name is PORT_2."
::= { bdgPort 2 }
bdgPortType OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IEEE specification the port meets, e.g. 802.3."
::= { bdgPort 3 }
bdgPortStatus OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status in which the port is operating. The status messages
for Ports 1 and 2 are:
OFF - The port is off, due to a failed network interface
chip associated with that port.
OK/SQE ON - The port is communicating with the network
and the transceiver making the connection to the network
has SQE enabled.
OK/SQE OFF - The port is communicating with the network
and the transceiver making the connection to the network
has SQE disabled.
CARRIER LOST - Communication with the network has not
been established or has been lost."
::= { bdgPort 4 }
bdgPortNetName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The user-defined name assigned to a network segment connected to
the port. The default network name for Port 1 is LAN_1 and the
default network name for Port 2 is LAN_2."
::= { bdgPort 5 }
bdgPortFrRx OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames received at the specified port."
::= { bdgPort 6 }
bdgPortDisInb OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of valid frames that were received at the port
but then discarded by the bridge in the forwarding process."
::= { bdgPort 7 }
bdgPortFwdOutb OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames forwarded successfully to the appropriate
port."
::= { bdgPort 8 }
bdgPortDisLOB OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets that were discarded by the bridge because
of a lack of buffer space to maintain the data."
::= { bdgPort 9 }
bdgPortDisTDE OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames that were intended for forwarding but were
discarded when the maximum time period set for transmission was
exceeded before forwarding was possible."
::= { bdgPort 10 }
bdgPortDisErr OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames that could not be transmitted because the
frame was too large for the attached network (1526 bytes,
including preamble, for 802.3 networks)."
::= { bdgPort 11 }
bdgPortColl OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of collisions that have occurred on the network at
the specified port."
::= { bdgPort 12 }
bdgPortTxAbrt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of transmissions that have been aborted due to
excessive collisions (over 16 attempts to transmit the same
packet)."
::= { bdgPort 13 }
bdgPortOowColl OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of collisions out of the standard collision window
(51.2 uS). This indicates a network problem."
::= { bdgPort 14 }
bdgPortCRCErr OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets detected with Cyclical Redundancy Check
failures."
::= { bdgPort 15 }
bdgPortFrAlErr OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of errors due to misaligned packets."
::= { bdgPort 16 }
bdgPortPriority OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The part of the port identifier which is used with the spanning
tree algorithm when determining which port in a LAN segment has
priority. The default is 80."
::= { bdgPort 17 }
bdgPortState OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current state of the port, DISABLED, LISTENING, LEARNING,
FORWARDING or BLOCKING."
::= { bdgPort 18 }
bdgPortPathCost OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The contributory cost of the applicable port to the overall cost
of the path when the specified port is the root port. Allowable
range is 1 to 65535. The default is 100."
::= { bdgPort 19 }
bdgPortDesigCost OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The cost of the path of this port to the root bridge on the
network."
::= { bdgPort 20 }
bdgPortDesigBrdg OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The network address of the bridge that is assumed to be the root
bridge on the network."
::= { bdgPort 21 }
bdgPortDesigPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port identifier of the bridge port believed to be the
designated port for the LAN associated with the port."
::= { bdgPort 22 }
bdgPortTopChgAck OBJECT-TYPE
SYNTAX INTEGER
{
noTopologyChangeIsOccurring (0),
topologyChangeIsOccurring (1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of the topology change acknowledgement flag in the
next configuration BPDU to be transmitted on the associated port."
::= { bdgPort 23 }
bdgPortDesigRoot OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The unique bridge identifier of the bridge that is assumed to be
the root bridge on the network."
::= { bdgPort 24 }
bdgPortRuntPackets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets received at the indicated bdgPort that were
less than the IEEE 802.3 minimum Ethernet frame size of 64 bytes."
::= { bdgPort 25 }
bdgPortOversizePackets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets received at the indicated port that were
greater than the IEEE 802.3 maximum Ethernet frame size of 1518
bytes."
::= { bdgPort 26 }
bdgPortFrFilt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames received at the indicated port that were
filtered by the bridge."
::= { bdgPort 27 }
-- Acquired Database Statistical Object Definitions
--
-- This section defines the objects under the Acquired Database
-- Statistics node.
--
-- Instance Identifiers for Acquired Database Statistical Objects
--
-- There is only one instance of an Acquired Database Statistical object,
-- thus the Instance Identifier is 0.
--
-- Acquired Database Statistical Objects
acqTotalEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of entries in the acquired database."
::= { acqStats 1 }
acqMaxEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of entries allowed in the acquired database."
::= { acqStats 2 }
acqStaticEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of addresses added to the Acquired database by the
user or network manager."
::= { acqStats 3 }
acqStaticAgeTime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The length of time allowed for a static entry in the Acquired
database to be inactive before it is dropped from the database.
This time is fixed at zero."
::= { acqStats 4 }
acqDynEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of entries that have been accumulated in the Acquired
database through the bridge's learning process."
::= { acqStats 5 }
acqDynAgeTime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The length of time allowed for a dynamic entry in the acquired
database to be inactive before it is dropped from the database. A
time from 10 - 1,000,000 seconds is allowed. The default is 300
seconds."
::= { acqStats 6 }
acqEraseDatabase OBJECT-TYPE
SYNTAX INTEGER
{
eraseAcquiredDatabase (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set to zero to erase all entries in the acquired database."
::= { acqStats 7 }
-- Acquired Database Option Object Definitions
--
-- This section defines the objects under the Acquired Database
-- Option node.
--
-- Instance Identifiers for Acquired Database Option Objects
--
-- The instance identifier for the acquired database option objects is
-- the 6-byte Ethernet address of the device to be added, deleted or
-- displayed to/from the acquired database.
--
-- Acquired Database Option Objects
acqCreate00 OBJECT-TYPE
SYNTAX INTEGER
{
createAcquiredEntryFilterPort1FilterPort2 (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Add an entry to the acquired database to filter packets entering
ports 1 and 2 if those packets are destined for the specified
address."
::= { acqOptions 1 }
acqCreate20 OBJECT-TYPE
SYNTAX INTEGER
{
createAcquiredEntryForwardPort1FilterPort2 (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Add an entry to the acquired database to forward packets
entering port1 to port2 and filter packets entering port2 if
those packets are destined for the specified address."
::= { acqOptions 2 }
acqCreate01 OBJECT-TYPE
SYNTAX INTEGER
{
createAcquiredEntryFilterPort1ForwardPort2 (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Add an entry to the acquired database to filter packets entering
port 1 and forward packets entering port 2 to port 1 if those
packets are destined for the specified address."
::= { acqOptions 3 }
acqCreate21 OBJECT-TYPE
SYNTAX INTEGER
{
createAcquiredEntryForwardPort1ForwardPort2 (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Add an entry to the acquired database to forward packets
entering port 1 to port 2 and to forward packets entering port 2
to port 1 if those packets are destined for the specified
address."
::= { acqOptions 4 }
acqDelete OBJECT-TYPE
SYNTAX INTEGER
{
deleteAcquiredEntry (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Delete an entry from the acquired database."
::= { acqOptions 5 }
acqDispType OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Display the entry type, STATIC or DYNAMIC."
::= { acqOptions 6 }
acqDispOutp1 OBJECT-TYPE
SYNTAX INTEGER
{
filter (0),
relay (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The outbound port for packets entering port 1."
::= { acqOptions 7 }
acqDispOutp2 OBJECT-TYPE
SYNTAX INTEGER
{
filter (0),
relay (1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The outbound port for packets entering port 2."
::= { acqOptions 8 }
acqSrcAddress OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The source address of this acquired database entry, i.e. the
instance."
::= { acqOptions 9 }
-- Permanent Database Statistical Object Definitions
--
-- This section defines the objects under the Permanent Database
-- Statistics node.
--
-- Instance Identifiers for Permanent Database Statistical Objects
--
-- There is only one instance of an Permanent Database Statistical
-- object, thus the Instance Identifier is 0.
--
-- Permanent Database Statistical Objects
permMaxEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of entries allowed in the permanent database."
::= { permStats 1 }
permCurrEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of entries currently recorded in the bridge's
permanent database."
::= { permStats 2 }
permEraseDatabase OBJECT-TYPE
SYNTAX INTEGER
{
erasePermanentDatabase (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Erase all entries in the permanent database."
::= { permStats 3 }
-- Permanent Database Option Object Definitions
--
-- This section defines the objects under the Permanent Database
-- Option node.
--
-- Instance Identifiers for Permanent Database Option Objects
--
-- The instance identifier for the permanent database option objects is
-- the 6-byte Ethernet address of the device to be added, deleted or
-- displayed to/from the permanent database.
--
-- Permanent Database Option Objects
permCreate00 OBJECT-TYPE
SYNTAX INTEGER
{
createPermanentEntryFilterPort1FilterPort2 (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Add an entry to the permanent database to filter packets
entering ports 1 and 2 if those packets are destined for the
specified address."
::= { permOptions 1 }
permCreate20 OBJECT-TYPE
SYNTAX INTEGER
{
createPermanentEntryForwardPort1FilterPort2 (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Add an entry to the permanent database to forward packets
entering port 1 and filter packets entering port 2 if those
packets are destined for the specified address."
::= { permOptions 2 }
permCreate01 OBJECT-TYPE
SYNTAX INTEGER
{
createPermanentEntryFilterPort1ForwardPort2 (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Add an entry to the permanent database to filter packets
entering port 1 and forward packets entering port 2 if those
packets are destined for the specified address."
::= { permOptions 3 }
permCreate21 OBJECT-TYPE
SYNTAX INTEGER
{
createPermanentEntryForwardPort1ForwardPort2 (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Add an entry to the permanent database to forward packets
entering ports 1 and 2 if those packets are destined for the
specified address."
::= { permOptions 4 }
permDelete OBJECT-TYPE
SYNTAX INTEGER
{
deletePermanentEntry (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Delete an entry from the permanent database."
::= { permOptions 5 }
permDispType OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Display the entry type, STATIC or DYNAMIC."
::= { permOptions 6 }
permDispOutp1 OBJECT-TYPE
SYNTAX INTEGER
{
filter (0),
relay (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The outbound port for packets entering port 1."
::= { permOptions 7 }
permDispOutp2 OBJECT-TYPE
SYNTAX INTEGER
{
filter (0),
relay (1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The outbound port for packets entering port 2."
::= { permOptions 8 }
permSrcAddress OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The source address in this permanent database entry, i.e. the
instance."
::= { permOptions 9 }
-- Special Database Statistical Object Definitions
--
-- This section defines the objects under the Special Database
-- Statistical node.
--
-- Instance Identifiers for Special Database Statistical Objects
--
-- There is only one instance of a Special Database Statistical object,
-- thus the Instance Identifier is 0.
--
-- Special Database Statistical Objects
specNumEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of filters in the special database."
::= { specStats 1 }
specMaxEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of filters the special database can contain."
::= { specStats 2 }
specNextFilterNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of the next available filter that can be added to the
special database."
::= { specStats 3 }
-- Special Database Filter Object Definitions
--
-- This section defines the objects under the Special Database
-- Filter node.
--
-- Instance Identifiers for Special Database Filter Objects
--
-- The instance identifier of the special database filter objects
-- is the filter number, values from 1 through 10 are allowed.
--
-- Special Database Filter Objects
specEnable OBJECT-TYPE
SYNTAX INTEGER
{
disableFilter (0),
enableFilter (1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable or disable the filter."
::= { specFilters 1 }
specPort1 OBJECT-TYPE
SYNTAX INTEGER
{
filter (0),
relay (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set port 1 to filter or forward packets."
::= { specFilters 2 }
specPort2 OBJECT-TYPE
SYNTAX INTEGER
{
filter (0),
relay (1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set port 2 to filter or forward packets."
::= { specFilters 3 }
specDestAddress OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set the special database to filter packets with a specific
destination address."
::= { specFilters 4 }
specSrcAddress OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set the special database to filter packets with a specific
source address."
::= { specFilters 5 }
specType OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set the special database to filter packets with a specific type
field."
::= { specFilters 6 }
specDataField OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set the special database to filter packets based on the first
sixteen bytes of data in the packet."
::= { specFilters 7 }
specDeleteFilter OBJECT-TYPE
SYNTAX INTEGER
{
deleteFilter (0)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Delete a filter from the special database."
::= { specFilters 8 }
-- TRAP TYPES OBJECT DEFINITIONS
--
-- This section describes the trap types that the bridge can generate. These
-- are not objects, but Object Identifiers used to indicate the specific trap.
-- They are taken from the object space and are thus documented here.
--
-- The SNMP trap messages are composed of two user definable areas:
-- a) the specific trap type and
-- b) the VarBindings (e.g. the interesting information)
--
-- The specific trap type is an integer that is used to determine the
-- specific trap which has occurred. The "interesting information" contains
-- a group of object identifiers and their values that provide information
-- about the trap.
--
-- Trap Decription
--
-- BridgeStatus
--
-- Specific Trap Type Code - 0x0301
--
-- When the bridge status changes, a trap will be generated. The
-- interesting information includes the current status of the bridge.
--
--
-- Trap Description
--
-- AcqDbaseFull
--
-- Specific Trap Type Code - 0x0302
--
-- When the acquired portion of the bridge's filtering database is full, a
-- trap is generated. The interesting information included with this trap
-- is the number of entries in the acquired database.
-- Formal definition of the Layer Management MIB. (e.g. PC cards )
lmcommon OBJECT IDENTIFIER ::= { layerMgmt 1 }
mAC OBJECT IDENTIFIER ::= { layerMgmt 2 }
ieee8023 OBJECT IDENTIFIER ::= { mAC 1 }
pcIF OBJECT IDENTIFIER ::= { ieee8023 1 }
pcIfRev OBJECT IDENTIFIER ::= { pcIF 1 }
pcDeviceName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Name of the PC device"
::= { pcIfRev 1 }
pcBoardType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An object Identifier that indicates the type of the PC
board. This will include MAC type and Media type."
::= { pcIfRev 2 }
pcOwnerName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The owner of this PC."
::= { pcIfRev 3 }
pcLocation OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A text description of the location of this PC."
::= { pcIfRev 4 }
pcMMACAddr OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The MAC address of the MMAC that this PC is connected to."
::= { pcIfRev 5 }
pcMMACBoard OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The slot number of the board in the MMAC that this PC is
connected to."
::= { pcIfRev 6 }
pcMMACPort OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of the port on the board of the MMAC that this
PC is connected to."
::= { pcIfRev 7 }
pcApplication OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A text description of the network application running on
this PC."
::= { pcIfRev 8 }
pcDriverRev OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The revision of the LAN card driver."
::= { pcIfRev 9 }
pcOnboardMemory OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Kilobytes of memory (eg. a 16K board would
reply 16)"
::= { pcIfRev 10 }
pcComment OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A user-defined character string."
::= { pcIfRev 11 }
pcMACAddr OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The MAC address of the PC card."
::= { pcIfRev 12 }
pcFramesXmit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of MAC frames transmitted by this PC card."
::= { pcIfRev 13 }
pcBytesXmit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number bytes transmitted by this PC card."
::= { pcIfRev 14 }
pcMcastXmit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of multicasted frames sent by this PC card."
::= { pcIfRev 15 }
pcBcastXmit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of broadcast frames from this PC card."
::= { pcIfRev 16 }
pcDeferXmit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of transmit packets that were deferred due to
busy media."
::= { pcIfRev 17 }
pcSglColl OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of transmit packet experiencing a single
collision."
::= { pcIfRev 18 }
pcMultiColl OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of transmit packets that have experienced
multiple collisions."
::= { pcIfRev 19 }
pcTotXmitErrs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of transmit errors."
::= { pcIfRev 20 }
pcLateColls OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of transmit packets that experienced late
collisions."
::= { pcIfRev 21 }
pcXcessColls OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of transmit packets aborted due to excess
collisions."
::= { pcIfRev 22 }
pcCarrErr OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of transmit packets that experience carrier
sense errors (ie. lose carrier during transmission)."
::= { pcIfRev 23 }
pcFramesRec OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames received."
::= { pcIfRev 24 }
pcBytesRec OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of bytes received by this station."
::= { pcIfRev 25 }
pcMcastRec OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of multicasted frames received."
::= { pcIfRev 26 }
pcBcastRec OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of broadcast packets received."
::= { pcIfRev 27 }
pcTotRecErrs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of receive errors."
::= { pcIfRev 28 }
pcTooLong OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets received that are too long (over 1518
bytes)."
::= { pcIfRev 29 }
pcTooShort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets that are too short. (under 64 bytes
long)."
::= { pcIfRev 30 }
pcAlignErrs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of alignment errors in receive packets."
::= { pcIfRev 31 }
pcCRCErrs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of receive packets with CRC errors."
::= { pcIfRev 32 }
pcLenErrs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets whose length is not equal to the
number of bytes received."
::= { pcIfRev 33 }
pcIntRecErr OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of receive packets that experienced internal
errors (eg. no receive buffers)."
::= { pcIfRev 34 }
pcSqeErr OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of SQE errors."
::= { pcIfRev 35 }
END
|