summaryrefslogtreecommitdiff
path: root/MIBS/enterasys/CTRON-TIMED-RESET-MIB
blob: 0d44d2bfbe098f97b49a9564b69c1af89eb8e12e (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
CTRON-TIMED-RESET-MIB DEFINITIONS ::= BEGIN

--  ctron-timed-reset-mib.txt
--  Revision: 01.00.00
--  Part Number:
--  Date: Feb 21, 2002

--  Cabletron Systems, Inc.
--  35 Industrial Way, P.O. Box 5005
--  Rochester, NH 03867-0505
--  (603) 332-9400
--  support@ctron.com

--  This module provides definitions for Cabletron's
--  enterprise-specific timed reset functionality.
--
--  This module describes existing functionality.
--
--  This module will be extended, as needed.

--  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 Feb 2002 Enterasys Networks

IMPORTS

      OBJECT-TYPE
            FROM RFC-1212
      ctDevice
            FROM CTRON-MIB-NAMES;

ctTimedResetMIB     OBJECT IDENTIFIER ::= { ctDevice ctTimedResetMIB(2) }

ctTimedResetStatus         OBJECT-TYPE 
       SYNTAX  INTEGER { 
          disabled(0), 
          softEnabled(1), 
          hardEnabled(2) 
       } 
       ACCESS  read-write 
       STATUS  deprecated 
       DESCRIPTION 
          "softEnabled(1) - soft reset in ctTimedResetTimeEntered seconds.
           hardEnabled(2) - hard reset in ctTimedResetTimeEntered seconds.

           A zero value in ctTimedResetTimeEntered will cause an immediate
           reset.

           Setting this to disabled(0) will cause any currently enabled 
           timed reset will be disabled." 
       ::= { ctTimedResetMIB 1 } 

ctTimedResetTimeEntered    OBJECT-TYPE 
       SYNTAX  INTEGER 
       ACCESS  read-write 
       STATUS  deprecated 
       DESCRIPTION 
          "The time, in seconds, from the time ctTimedResetStatus 
           is set to softEnabled(1) or hardEnabled(2), until the 
           board will reset." 
       ::= { ctTimedResetMIB 2 } 

ctTimedResetTimeRemaining  OBJECT-TYPE 
       SYNTAX  INTEGER 
       ACCESS  read-only 
       STATUS  deprecated 
       DESCRIPTION 
          "The time, in seconds, remaining until a reset will occur.
           The time is not meaningful if ctTimedResetStatus is
           disabled(0)."
       ::= { ctTimedResetMIB 3 } 

ctTimedResetOperationalMode OBJECT-TYPE 
       SYNTAX  INTEGER { 
          currentMode(0), 
          ieee8021Q(1), 
          secureFast(2) 
       } 
       ACCESS  read-write 
       STATUS  deprecated 
       DESCRIPTION 
          "The operational mode to run in when a timed reset occurs. 
           When set to currentMode(0), the operational mode will remain 
           unchanged.  When set to ieee8021Q(1), the operational mode
           will be 802.1Q Switching.  When set to secureFast(2),
           the operational mode will be Secure Fast VLAN." 
       ::= { ctTimedResetMIB 4 } 

ctTimedResetNVRamReset  OBJECT-TYPE 
       SYNTAX  INTEGER { 
         dontResetNVRam(0), 
         resetNVRam(1) 
         } 
       ACCESS  read-write 
       STATUS  deprecated 
       DESCRIPTION 
         "dontResetNVRam(0) - NVRAM will not be cleared on timed reset.
          resetNVRam(1)     - NVRAM will be cleared on timed reset." 
       ::= { ctTimedResetMIB 5 } 

END