1CTRON-SFPS-CHASSIS-MIB DEFINITIONS ::= BEGIN
2
3--  sfps-chassis-mib.txt
4--  Revision: 0.0.01
5--
6--  Cabletron Systems, Inc.
7--  35 Industrial Way, P.O. Box 5005
8--  Rochester, NH 03867-0505
9--  (603) 332-9400
10--  support@ctron.com
11--
12--  This module provides authoritative definitions for Cabletron's
13--  enterprise specific Fast Packet Switching Services API MIB.
14--
15--  This module will be extended, as required.
16--
17--
18--  Cabletron Systems reserves the right to make changes in
19--  specification and other information contained in this document
20--  without prior notice.  The reader should consult Cabletron Systems
21--  to determine whether any such changes have been made.
22--
23--  In no event shall Cabletron Systems be liable for any incidental,
24--  indirect, special, or consequential damages whatsoever (including
25--  but not limited to lost profits) arising out of or related to this
26--  document or the information contained in it, even if Cabletron
27--  Systems has been advised of, known, or should have known, the
28--  possibility of such damages.
29--
30--  Cabletron grants vendors, end-users, and other interested parties
31--  a non-exclusive license to use this Specification in connection
32--  with the management of Cabletron products.
33--  Copyright October 93 Cabletron Systems
34--
35
36IMPORTS
37      OBJECT-TYPE
38                FROM RFC-1212
39--      DisplayString
40--                FROM RFC1213-MIB
41--      enterprises,
42--      IpAddress,
43      TimeTicks
44                FROM RFC1155-SMI
45
46--  These Objects are defined in the file sfps-inc.mib.txt
47        sfpsChassisRipTable, sfpsChassisRipAPI
48
49                        FROM CTRON-SFPS-INCLUDE-MIB;
50
51--  Textual Conventions
52
53--SfpsSwitchInstance ::= OCTET STRING (SIZE(4))
54--  this will map to chassis.module index value
55
56--SfpsSwitchPort ::= INTEGER
57--  this will map to chassis.module.portgroup.portsubgroup.port index value
58
59SfpsAddress ::= OCTET STRING (SIZE (6))
60--  this will map to a MAC address
61
62--HexInteger ::= INTEGER
63--  display this integer in hex format
64
65
66
67
68--  SFPS Chassis RIP Table
69
70
71
72sfpsChassisRipChassisMac   OBJECT-TYPE
73        SYNTAX  OCTET STRING
74        ACCESS  read-only
75        STATUS  mandatory
76        DESCRIPTION
77                ""
78        ::= { sfpsChassisRipTable 1 }
79
80
81sfpsChassisRipFPPortMask   OBJECT-TYPE
82        SYNTAX  OCTET STRING
83        ACCESS  read-only
84        STATUS  mandatory
85        DESCRIPTION
86                ""
87        ::= { sfpsChassisRipTable 2 }
88
89
90sfpsChassisRipINBPortMask   OBJECT-TYPE
91        SYNTAX  OCTET STRING
92        ACCESS  read-only
93        STATUS  mandatory
94        DESCRIPTION
95                ""
96        ::= { sfpsChassisRipTable 3 }
97
98
99sfpsChassisRipModifiedTime   OBJECT-TYPE
100        SYNTAX  TimeTicks
101        ACCESS  read-only
102        STATUS  mandatory
103        DESCRIPTION
104                ""
105        ::= { sfpsChassisRipTable 4 }
106
107
108sfpsChassisRipStatus   OBJECT-TYPE
109        SYNTAX  INTEGER {
110                other(1),
111                active(2),
112                dead(3)
113        }
114        ACCESS  read-only
115        STATUS  mandatory
116        DESCRIPTION
117                ""
118        ::= { sfpsChassisRipTable 5 }
119
120-- sfps Chassis Rip API
121
122
123sfpsChassisRipAPIVerb   OBJECT-TYPE
124        SYNTAX  INTEGER {
125                other(1),
126                add(2),
127                delete(3),
128                purgePort(4),
129                sendUpdate(5),
130                clearTable(6),
131                setTimer(7)
132        }
133        ACCESS  read-write
134        STATUS  mandatory
135        DESCRIPTION
136                ""
137        ::= { sfpsChassisRipAPI 1 }
138
139sfpsChassisRipAPIChassisMac   OBJECT-TYPE
140        SYNTAX  SfpsAddress
141        ACCESS  read-write
142        STATUS  mandatory
143        DESCRIPTION
144                ""
145        ::= { sfpsChassisRipAPI 2 }
146
147sfpsChassisRipAPIPort   OBJECT-TYPE
148        SYNTAX  INTEGER
149        ACCESS  read-write
150        STATUS  mandatory
151        DESCRIPTION
152                ""
153        ::= { sfpsChassisRipAPI 3 }
154
155sfpsChassisRipAPITimer   OBJECT-TYPE
156        SYNTAX  INTEGER
157        ACCESS  read-write
158        STATUS  mandatory
159        DESCRIPTION
160                ""
161        ::= { sfpsChassisRipAPI 4 }
162
163sfpsChassisRipAPINumInTable   OBJECT-TYPE
164        SYNTAX  INTEGER
165        ACCESS  read-only
166        STATUS  mandatory
167        DESCRIPTION
168                ""
169        ::= { sfpsChassisRipAPI 5 }
170
171END
172