summaryrefslogtreecommitdiff
path: root/MIBS/enterasys/CTRON-SFPS-VLAN-MIB
blob: 8fbce86eb585195436d193086e23eabef36ae7d4 (plain)
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
CTRON-SFPS-VLAN-MIB DEFINITIONS ::= BEGIN

--  sfps-vlan-mib.txt
--  Revision: 0.0.09
--
--  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 Fast Packet Switching Services API 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 October 93 Cabletron Systems
--

IMPORTS
      OBJECT-TYPE
                FROM RFC-1212
      DisplayString
                FROM RFC1213-MIB
--      enterprises,
        TimeTicks, 
        IpAddress
--        Counter,
--        Gauge
                FROM RFC1155-SMI
 
--  These Objects are defined in the file sfps-inc.mib.txt.0.0.1
        vlanAPI, vlanName, vlanSystem, vlanTestAPI, vlanCountAPI, vlanAMRRules,
        vlanAMRStats,vlanAMRSubnets, vlanPort
                FROM CTRON-SFPS-INCLUDE-MIB; 
 

--  Textual Conventions

VlanSwitchInstance ::= INTEGER
--  this will map to chassis.module index value

SfpsAddress ::= OCTET STRING (SIZE (6))
-- this will map to a MAC address

HexInteger ::= INTEGER

SfpsSwitchPort ::= INTEGER
--  this will map to chassis.module.portgroup.portsubgroup.port index value
 

--  VLAN Switch Engine API Group
--  This group contains the objects that pertain to the VLAN Engine and
--  its external Application Program Interface (API).  The API provides a
--  verb-based autonomous interface to mapping and unmapping connections.


 
--  SFPS Virtual Bus API Group
--  This group contains the objects that pertain to the SFPS vlan and
--  its external Application Program Interface (API).  The API provides a
--  verb-based autonomous interface to mapping and unmapping connections.


sfpsVAPIVerb    OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),                -- none of the following
                        add-vlan(2),             -- add a user mapping
                        delete-vlan(3),          -- add a user mapping
                        enable-vlan(4),          -- enables the entire vlan
                        disable-vlan(5),         -- disables the vlan
                        map-port(6),     -- add an access port to the vlan 
                        unmap-port(7),           -- remove an access port from the vlan
                        enable-port(8),      -- enable an access port
                        disable-port(9),         -- disable an access port
                        map-user(10),    -- add a user mapping
                        unmap-user(11),  -- remove a user mapping
                        tap-vlan(12),            -- call tap a vlan
                        untap-vlan(13),          -- remove call tap 
                        auto-register(14),
                        auto-unregister(15)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Specifies the action to be initiated as a result of setting
                this leaf."
        ::= { vlanAPI 1 }


sfpsVAPIInPort     OBJECT-TYPE
        SYNTAX  SfpsSwitchPort
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION  
                "Specifies the ingress port of the Virtual LAN if mapping a connection.
                Specifies the source port of a user when mapping a user"
        ::= { vlanAPI 2 }


sfpsVAPIVlanName  OBJECT-TYPE
        SYNTAX  DisplayString  
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Specifies the Virtual LAN ID."
        ::= { vlanAPI 3 }


sfpsVAPIOutPort     OBJECT-TYPE
        SYNTAX  SfpsSwitchPort
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION  
                "Specifies the egress port of the Virtual LAN if mapping a connection."
        ::= { vlanAPI 4 }


sfpsVAPIUserMAC OBJECT-TYPE
        SYNTAX  SfpsAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Specifies the actual user's MAC value for the action."
        ::= { vlanAPI 5 }


sfpsVAPIUserAliasTag   OBJECT-TYPE
        SYNTAX  INTEGER  
                        {
                        aoMacDx(1),
                        aoIpxSap(2),
                        aoIpxRIP(3),
                        aoInetYP(4),
                        aoInetUDP(5),
                        aoIpxIpx(6),
                        aoInetIP(7),
                        aoInetRPC(8),
                        aoInetRIP(9),
                        aoMacDXMcast(10),
                        aoAtDDP(11),      
                        aoEmpty(12),      
                        aoVlan(13),
                        aoHostName(14),
                        aoNetBiosName(15),
                        aoInetIPMask(16)
                          }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates the Alias Value of the user. Not yet supported."
        ::= { vlanAPI 6 }


sfpsVAPIUserAlias   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates the Alias Value of the user."
        ::= { vlanAPI 7 }


sfpsVAPIAdminStatus     OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),             --  none of the following
                        disabled(2),          --  shutdown the object
                        enabled(3)            --  startup the SFPS
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Sets the administrative state of the object." 
        DEFVAL { enabled }
        ::= { vlanAPI 8 }


sfpsVAPIAutoRegisterRule OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                ether-type(2),
                ip-subnet(3),
                netBIOS(4),
                ipx-Server(5),
        appleTalk(6),
        decNET(7),
        vines(8),
        bpdu(9)         
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Specifies the AMR rule in which to perform the action on."
        ::= { vlanAPI 9 }


sfpsVAPIAutoRegMask   OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates the mask to apply when the IP-Subnet 
                rule is invoked."
        ::= { vlanAPI 10 }

 
sfpsVAPIAutoRegValue   OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates the Alias Value of the user."
        ::= { vlanAPI 11 }

 

sfpsVAPIUnicastPolicy  OBJECT-TYPE
        SYNTAX          INTEGER {
                            other(1),
                            open(2),
                            secure(3)
                        }
        ACCESS          read-write
        STATUS          mandatory
        DESCRIPTION
                "Sets the vlan policy type."
        DEFVAL { open }
        ::= { vlanAPI 12}

sfpsVAPIPortPolicy  OBJECT-TYPE
        SYNTAX          INTEGER {
                            other(1),
                            normal(2),
                            locked(3)
                        }
        ACCESS          read-write
        STATUS          mandatory
        DESCRIPTION
                "Sets the port mode type."
        DEFVAL { locked }
        ::= { vlanAPI 13}

sfpsVAPIFloodPolicy  OBJECT-TYPE
        SYNTAX          INTEGER {
                            other(1),
                            flooding-on(2),
                            flooding-off(3)
                        }
        ACCESS          read-write
        STATUS          mandatory
        DESCRIPTION
                "Sets the flood mode type."
        DEFVAL  {flooding-on }
        ::= { vlanAPI 14}

sfpsVAPIRouterPort  OBJECT-TYPE
        SYNTAX          INTEGER {
                            other(1),
                            router-port(2),
                            no-router(3)
                        }
        ACCESS          read-write
        STATUS          mandatory
        DESCRIPTION
                "Sets router port"
        ::= { vlanAPI 15}
 
sfpsVAPIVlanId   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates the Vlan Id."
        ::= { vlanAPI 16 }

sfpsVAPINvramId   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates the Nvram Id"
        ::= { vlanAPI 17 }

sfpsVAPIRelayAgent   OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates the Relay Agent."
        ::= { vlanAPI 18 }

sfpsVAPILayer3Learning   OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                learning-enabled(2),
                learning-disabled(3)
        }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates layer 3 learning enabled/disabled"
        ::= { vlanAPI 19 }

--

--  SFPS Virtual Bus Table
--  This table contains the SFPS-specific Vlan table managed objects.
--  Note that because this table is indexed by the Vlan index
--   .

-- VlanName

vlanNameTable     OBJECT-TYPE
        SYNTAX  SEQUENCE OF VlanNameEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "This table contains information of each SFVlan instance.
                 Essentially, a separate SFVlan instance exists for each Vlan.
                 If SFVlan is not configured on a module, than an entry
                 will not exist." 
        ::= { vlanName 1 }

vlanNameEntry   OBJECT-TYPE
        SYNTAX  VlanNameEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "Each entry specifies the configuration for the Vlan instance." 
        INDEX   { vlanNameNHash, vlanNameIndex }
        ::= { vlanNameTable 1 }

VlanNameEntry ::=
        SEQUENCE {
                                vlanNameNHash           HexInteger,
                vlanNameIndex                   INTEGER,
                vlanNameVlanName                DisplayString,
                                vlanNameAdminStatus             INTEGER,
                                vlanNameOperStatus      INTEGER,
                                vlanNameUniPolicy               INTEGER,
                                vlanNameFloodPolicy             INTEGER,
                                vlanNameStatusTime              TimeTicks,
                                vlanNameNumUsers                DisplayString,
                                vlanNameEnabledPorts    DisplayString,
                                vlanNameMappedPorts         DisplayString,
                        vlanNameVlanRule        INTEGER,
                        vlanNameFloodPorts      DisplayString,
                        vlanNameVlanId          INTEGER,
                        vlanNameRelayAgent      IpAddress
      }

 
vlanNameNHash    OBJECT-TYPE
        SYNTAX  HexInteger
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The primary index to the VlanName table." 
        ::= { vlanNameEntry 1 }

vlanNameIndex    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The secondary index to the VlanName table." 
        ::= { vlanNameEntry 2 }

vlanNameVlanName    OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The Virual LAN ID." 
        ::= { vlanNameEntry 3 }

vlanNameAdminStatus    OBJECT-TYPE
        SYNTAX  INTEGER  {
                                other(1),
                                disabled(2),
                                enabled(3)
                          }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The administrative state of the Vlan." 
        ::= { vlanNameEntry 4 }

vlanNameOperStatus    OBJECT-TYPE
        SYNTAX  INTEGER  {
                                other(1),
                                disabled(2),
                                enabled(3),
                                shutdown-pending(4),
                                startup-pending(5),
                                invalid-config(6),
                                testing(7)
                          }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The operational state of the Vlan." 
        ::= { vlanNameEntry 5 }

vlanNameUniPolicy    OBJECT-TYPE
        SYNTAX  INTEGER  {
                                other(1),
                                open(2),
                                secure(3)
                          }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The communication policy with respect to other Vlans." 
        ::= { vlanNameEntry 6 }

vlanNameFloodPolicy    OBJECT-TYPE
        SYNTAX  INTEGER  {
                                other(1),
                                flood-on(3),
                                flood-off(2)
                          }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The multicast and unknown destination flood policy." 
        ::= { vlanNameEntry 7 }

vlanNameStatusTime    OBJECT-TYPE
        SYNTAX  TimeTicks
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The amount of time that this Vlan has been in its
                 current operational state." 
        ::= { vlanNameEntry 8 }

vlanNameNumUsers    OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The number of users per port" 
        ::= { vlanNameEntry 9 }

vlanNameEnabledPorts    OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The list of ports which have are enabled for this Vlan." 
        ::= { vlanNameEntry 10 }

vlanNameMappedPorts    OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The list of ports which have this Vlan mapped to it." 
        ::= { vlanNameEntry 11 }

vlanNameVlanRule    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "." 
        ::= { vlanNameEntry 12 }

vlanNameFloodPorts    OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanNameEntry 13 }

vlanNameVlanId    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanNameEntry 14 }

vlanNameRelayAgent    OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanNameEntry 15 }


--


--  VLAN Switch Configuration Group
--  This group contains the objects that pertain to the setup and
--  configuration of a single instance of an VLAN.

vlanSystemTable     OBJECT-TYPE
        SYNTAX  SEQUENCE OF VlanSystemEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "This table contains the configuration and administrative
                 information of each SFVlan switch instance.  Essentially, a
                 separate SFVlan switch instance exists for each switch module.
                 If SFVlan is not configured on a module, than an entry
                 will not exist." 
        ::= { vlanSystem 1 }

vlanSystemEntry    OBJECT-TYPE
        SYNTAX  VlanSystemEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "Each entry specifies the VLAN configuration for the
                 VLAN instance."
        INDEX   { vlanSystemSwitchInstance }
        ::= { vlanSystemTable 1 }

VlanSystemEntry ::=
        SEQUENCE {
                vlanSystemSwitchInstance     VlanSwitchInstance,
                vlanSystemAdminStatus        INTEGER,
                vlanSystemAdminReset         INTEGER,
                vlanSystemOperStatus         INTEGER,
                vlanSystemOperTime           TimeTicks,
                vlanSystemLastChange         TimeTicks,
                vlanSystemVersion            DisplayString,
                vlanSystemMibRev             DisplayString,
                vlanSystemAgentIP            IpAddress,
                                vlanSystemDomainName             DisplayString,
                vlanSystemPollCount          INTEGER, 
                vlanSystemFirstPollTime      TimeTicks,
                vlanSystemLastPollTime       TimeTicks,
                vlanSystemPriorPollTime      TimeTicks,
                vlanSystemDeltaPollTime      TimeTicks
        }

vlanSystemSwitchInstance    OBJECT-TYPE
        SYNTAX  VlanSwitchInstance
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The primary index to the VLAN switch table.  This
                 identifies the VLAN switch for which the entry
                 exists." 
        ::= { vlanSystemEntry 1 }

vlanSystemAdminStatus     OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),             --  none of the following
                        disabled(2),          --  shutdown the VLAN
                        enabled(3)            --  startup the VLAN
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Sets the administrative state of the VLAN switching
                 services for this VLAN instance.  This controls the
                 VLAN state at a module level.  Regardless of the
                 per-port state of each VLAN switching port and the
                 state of active connections, writing the value
                 disabled(2) will cause the VLAN to immediately
                 shutdown.  A gracefull shutdown will be attempted." 
        ::= { vlanSystemEntry 2 }

vlanSystemAdminReset      OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),             --  none of the following
                        reset(2)              --  force a reset
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Resets this VLAN switch instance. Writing a vlue of
                 reset(2) will force a soft restart of the VLAN
                 without any graceful shutdown.  Any active
                 connections or services will be interrupted."
        ::= { vlanSystemEntry 3 }

vlanSystemOperStatus     OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),             --  none of the following
                        disabled(2),          --  not running
                        enabled(3),           --  running
                        pending-disable(4),   --  shut-down in progress
                        pending-enable(5),    --  start-up in progress
                        invalid-config(6)     --  not running,invalid config
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Indicates the current operating condition of the VLAN 
                 instance."
        ::= { vlanSystemEntry 4 }

                            
vlanSystemOperTime  OBJECT-TYPE
        SYNTAX  TimeTicks 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Indicates the amount of time (# of time ticks) that
                 this VLAN switch instance has been in its current
                 operational state."
        ::= { vlanSystemEntry 5 }

vlanSystemLastChange  OBJECT-TYPE
        SYNTAX  TimeTicks 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Indicates the last time a change was made to the
                 configuration entry for this VLAN switch instance."
        ::= { vlanSystemEntry 6 }

vlanSystemVersion  OBJECT-TYPE
        SYNTAX  DisplayString 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Indicates the current revision level of the VLAN firmware 
                 for this VLAN switch instance."
        ::= { vlanSystemEntry 7 }

vlanSystemMibRev OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Indicates in textual format the current revision
                 level of the Cabletron VLAN MIB implemeted by the
                 agent for this VLAN switch instance."
        ::= { vlanSystemEntry 8 }

vlanSystemAgentIP      OBJECT-TYPE
        SYNTAX  IpAddress  
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "IP Address of VLAN Manager who owns this switch."
        ::= { vlanSystemEntry 9 }

vlanSystemDomainName  OBJECT-TYPE
        SYNTAX  DisplayString 
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates domain name"
        ::= { vlanSystemEntry 10 }

vlanSystemPollCount  OBJECT-TYPE
        SYNTAX  INTEGER 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Number of polls"
        ::= { vlanSystemEntry 11 }

vlanSystemFirstPollTime  OBJECT-TYPE
        SYNTAX  TimeTicks 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "System time when first polled"
        ::= { vlanSystemEntry 12 }

vlanSystemLastPollTime  OBJECT-TYPE
        SYNTAX  TimeTicks 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Last time polled"
        ::= { vlanSystemEntry 13 }

vlanSystemPriorPollTime  OBJECT-TYPE
        SYNTAX  TimeTicks 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Poll time one before the last poll time"
        ::= { vlanSystemEntry 14 }

vlanSystemDeltaPollTime  OBJECT-TYPE
        SYNTAX  TimeTicks 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Time difference between last poll time and prior poll time"
        ::= { vlanSystemEntry 15 }

-- vlanTestAPI

vlanTestAPIVerb    OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),               -- 
                        add-vlan(2),            -- add a Vlan
                        delete-vlan(3),         -- delete a Vlan
                        enable-vlan(4),         -- enable a Vlan
                        disable-vlan(5),        -- disable a Vlan
                        open-vlan(6),           -- open a Vlan
                        secure-vlan(7),         -- secure a Vlan
                        enable-vlan-port(8),    -- enable a Vlan for a port
                        disable-vlan-port(9),   -- disable a Vlan for a port
                        map-vlan-port(10),      -- map a Vlan for a port
                        unmap-vlan-port(11),    -- unmap a Vlan for a port
                        tap-vlan-port(12),      -- unsupported 
                        untap-vlan-port(13),    -- unsupported
                        get-vlan-info(14),      -- get Vlan info
                        get-port-info(15),      -- get port info
                        fill-table(16),         -- auto-configure Vlan attributes
                        empty-table(17)         -- auto-unconfigure Vlan attributes
        }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Specifies the action to be initiated as a result of setting
                this leaf."
        ::= { vlanTestAPI 1 }


vlanTestAPIVlanName     OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION  
                "Specifies the Virtual LAN to be acted upon."
        ::= { vlanTestAPI 2 }


vlanTestAPIPort  OBJECT-TYPE
        SYNTAX  INTEGER  
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Specifies the Port to be acted upon."
        ::= { vlanTestAPI 3 }

vlanTestAPIVlanId  OBJECT-TYPE
        SYNTAX  INTEGER  
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Specifies the ID."
        ::= { vlanTestAPI 5 }


-- vlan testAPI Outout

vlanTestAPIOutputTable     OBJECT-TYPE
        SYNTAX  SEQUENCE OF VlanTestAPIOutputEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "This table contains the output results of the VlanAPI action."
        ::= { vlanTestAPI 4 }

vlanTestAPIOutputEntry  OBJECT-TYPE
        SYNTAX  VlanTestAPIOutputEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "Each entry specifies one output result of the VlanAPI action."
        INDEX   { vlanTestAPIOutputIndex }
        ::= { vlanTestAPIOutputTable 1 }

VlanTestAPIOutputEntry ::=
        SEQUENCE {
                vlanTestAPIOutputIndex          INTEGER,
                vlanTestAPIOutputVlanName       DisplayString,
                vlanTestAPIOutputUserCnt        INTEGER,
                vlanTestAPIOutputStatus         INTEGER,
                vlanTestAPIOutputPolicy         INTEGER,
                vlanTestAPIOutputPort           INTEGER,
                vlanTestAPIOutputMap            INTEGER,
                vlanTestAPIOutputAble           INTEGER,
                vlanTestAPIOutputTap            INTEGER,
                vlanTestAPIOutputVlanId         INTEGER
                }

vlanTestAPIOutputIndex    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The primary index to the VLAN Test API Output table." 
        ::= { vlanTestAPIOutputEntry 1 }
        
vlanTestAPIOutputVlanName    OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Specifies the Virtual LAN by name." 
        ::= { vlanTestAPIOutputEntry 2 }

vlanTestAPIOutputUserCnt    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Specifies the number of users on this Vlan." 
        ::= { vlanTestAPIOutputEntry 3 }

vlanTestAPIOutputStatus     OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),               
                        disabled(2),             
                        enabled(3)
        }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Specifies the operational state of this Vlan."
        ::= { vlanTestAPIOutputEntry 4 }

vlanTestAPIOutputPolicy     OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),               
                        normal(2),               
                        secure(3)
        }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Specifies the uni-cast policy of this Vlan."
        ::= { vlanTestAPIOutputEntry 5 }

vlanTestAPIOutputPort    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Specifies the Vlan port." 
        ::= { vlanTestAPIOutputEntry 6 }

vlanTestAPIOutputMap     OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),               
                        unmapped(2),             
                        mapped(3)
        }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Specifies whether the Vlan is mapped."
        ::= { vlanTestAPIOutputEntry 7 }

vlanTestAPIOutputAble     OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),               
                        disabled(2),             
                        enabled(3)
        }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Specifies whether the Vlan is enabled."
        ::= { vlanTestAPIOutputEntry 8 }

vlanTestAPIOutputTap     OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),               
                        untapped(2),             
                        tapped(3)
        }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Specifies whether the Vlan is tapped."
        ::= { vlanTestAPIOutputEntry 9 }

vlanTestAPIOutputVlanId    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Specifies the Vlan Id." 
        ::= { vlanTestAPIOutputEntry 10 }


--  VLAN Count

vlanCountAPITotal    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanCountAPI 1 }

vlanCountAPIAdmin    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanCountAPI 2 }

vlanCountAPIAutoreg    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanCountAPI 3 }


-- VlanAMR

vlanAMRRulesTable     OBJECT-TYPE
        SYNTAX  SEQUENCE OF VlanAMRRulesEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "This table displays the on/off status of each individual AMR Rule." 
        ::= { vlanAMRRules 1 }

vlanAMRRulesEntry       OBJECT-TYPE
        SYNTAX  VlanAMRRulesEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "" 
        INDEX   { vlanAMRRulesRule }
        ::= { vlanAMRRulesTable 1 }

VlanAMRRulesEntry ::=
        SEQUENCE {
                vlanAMRRulesRule          INTEGER,
        vlanAMRRulesStatus        INTEGER  
      }

vlanAMRRulesRule    OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),
                        etherType(2),
                        ipSubNet(3),
                        netBIOS(4),
                        ipxServer(5),
            appleTalk(6),
            decNET(7),
            vines(8),
            bpdu(9)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                        "Refers to the enumerated value corresponding to each AMR rule"
        ::= { vlanAMRRulesEntry 1 }

vlanAMRRulesStatus    OBJECT-TYPE
        SYNTAX  INTEGER {
--                      off(0),
                        on(1)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                        "Displays whether the rule is currently on or off"
        ::= { vlanAMRRulesEntry 2 }

--  AMR Stats
--  This table displays miscellaneous stats about the state of AMR rule.

vlanAMRStatsNumRulesEnabled    OBJECT-TYPE
        SYNTAX  INTEGER 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                        "Refers to the number of rules that are on in the AmrRules"
        ::= { vlanAMRStats 1 }

vlanAMRStatsSingleMask    OBJECT-TYPE
        SYNTAX  IpAddress       
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Displays the mask that is used with the IP-Subnet AMR rule" 
        ::= { vlanAMRStats 2 }



--  AMR Subnets
--  This table displays miscellaneous stats about the state of AMR rule.

vlanAMRSubnetsPrefix    OBJECT-TYPE
        SYNTAX  IpAddress       
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                        ""
        ::= { vlanAMRSubnets 1 }

vlanAMRSubnetsMask    OBJECT-TYPE
        SYNTAX  IpAddress       
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanAMRSubnets 2 }


--

vlanPortTable     OBJECT-TYPE
        SYNTAX  SEQUENCE OF VlanPortEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanPort 1 }

vlanPortEntry   OBJECT-TYPE
        SYNTAX  VlanPortEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "" 
        INDEX   { vlanPortPortNum }
        ::= { vlanPortTable 1 }

VlanPortEntry ::=
        SEQUENCE {
                vlanPortPortNum             INTEGER,
                vlanPortPortStatus          INTEGER,
                vlanPortPortPolicy          INTEGER,
                vlanPortVlanName            DisplayString,
                vlanPortAdminStatus         INTEGER,
                vlanPortUniPolicy           INTEGER,
                vlanPortFloodPolicy         INTEGER,
                vlanPortRouterPort          INTEGER,
                vlanPortVlanId              INTEGER,
                vlanPortRelayAgent          IpAddress,
                vlanPortLayer3Learning      INTEGER
     }

 
vlanPortPortNum    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The primary index to the VlanPort table." 
        ::= { vlanPortEntry 1 }

vlanPortPortStatus    OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),
                        disabled(2),
                        enabled(3)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanPortEntry 2 }

vlanPortPortPolicy    OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),
                        normal(2),
                        locked(3)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanPortEntry 3 }

vlanPortVlanName    OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanPortEntry 4 }

vlanPortAdminStatus    OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),
                        disabled(2),
                        enabled(3)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanPortEntry 5 }

vlanPortUniPolicy    OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),
                        open(2),
                        secure(3)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanPortEntry 6 }

vlanPortFloodPolicy    OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),
                        floodOn(2),
                        floodOff(3)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanPortEntry 7 }

vlanPortRouterPort    OBJECT-TYPE
        SYNTAX  INTEGER {
                        other(1),
                        routerPort(2),
                        noRouter(3)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanPortEntry 8 }

vlanPortVlanId    OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanPortEntry 9 }

vlanPortRelayAgent    OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanPortEntry 10 }

vlanPortLayer3Learning    OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                enabled(2),
                disabed(3)
        }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "" 
        ::= { vlanPortEntry 11 }

END