-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTRON-BDG-MIB
1677 lines (1374 loc) · 39 KB
/
CTRON-BDG-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
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
-- 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