summaryrefslogtreecommitdiff
path: root/MIBS/ruckus/RUCKUS-SWINFO-MIB
blob: 30abc0d6aa7a7acb4826378195404c9a70216f52 (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
--
-- Copyright (c) 2010 by Ruckus Wireless, Inc.
-- All Rights Reserved
--

RUCKUS-SWINFO-MIB DEFINITIONS ::= BEGIN

IMPORTS
    ruckusCommonSwInfoModule
        FROM RUCKUS-ROOT-MIB
    DateAndTime,
    DisplayString,
    TruthValue
        FROM SNMPv2-TC
    OBJECT-GROUP,
    MODULE-COMPLIANCE
        FROM SNMPv2-CONF
    MODULE-IDENTITY,
    OBJECT-TYPE,
    Unsigned32
        FROM SNMPv2-SMI;

ruckusSwInfoMIB MODULE-IDENTITY
    LAST-UPDATED "201010150800Z"
    ORGANIZATION "Ruckus Wireless Inc."
    CONTACT-INFO
        "Ruckus Wireless Inc.

        Postal:
        880 W Maude Ave
        Sunnyvale, CA 94085
        USA

        EMail: support@ruckuswireless.com

        Phone: +1-650-265-4200"
    DESCRIPTION
        "This is the MIB Module for representing the software Information
        objects."
    ::= { ruckusCommonSwInfoModule 1 }


-- Groups
--

ruckusSwInfoObjects OBJECT IDENTIFIER   ::= { ruckusSwInfoMIB 1 }

ruckusSwInfo OBJECT IDENTIFIER  ::= { ruckusSwInfoObjects 1 }

ruckusSwInfoEvents OBJECT IDENTIFIER    ::= { ruckusSwInfoMIB 2 }

-- Software Revision Information
--

ruckusSwRevTable OBJECT-TYPE
    SYNTAX  SEQUENCE OF RuckusSwRevEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table maintains all the software revision information.
        This table is used to activate the inactive software."
    ::= { ruckusSwInfo 1 }


ruckusSwRevEntry OBJECT-TYPE
    SYNTAX  RuckusSwRevEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Each software revision entry."
    INDEX {
        ruckusSwRevIndex }
    ::= { ruckusSwRevTable 1 }


RuckusSwRevEntry ::= SEQUENCE {

    ruckusSwRevIndex  INTEGER,
    ruckusSwRevName   DisplayString,
    ruckusSwRevision  DisplayString,
    ruckusSwRevSize   Unsigned32,
    ruckusSwRevStatus INTEGER }


ruckusSwRevIndex OBJECT-TYPE
    SYNTAX  INTEGER (1..10)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This is an index into the SoftwareRev Table. This table
        contains two entries for active and inactive respectively."
    ::= { ruckusSwRevEntry 1 }


ruckusSwRevName OBJECT-TYPE
    SYNTAX  DisplayString (SIZE (1..64))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The name of the file."
    ::= { ruckusSwRevEntry 2 }


ruckusSwRevision OBJECT-TYPE
    SYNTAX  DisplayString (SIZE (1..32))
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The software revision of the file."
    ::= { ruckusSwRevEntry 3 }


ruckusSwRevSize OBJECT-TYPE
    SYNTAX  Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The size of the file in kilo bytes (KB=2**10, rounded up)."
    ::= { ruckusSwRevEntry 4 }


ruckusSwRevStatus OBJECT-TYPE
    SYNTAX  INTEGER {
            inactive(1),
            active(2) }
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "This indicates the current state of the software.
        This may either be active (currently running), or
        inactive."
    ::= { ruckusSwRevEntry 5 }


-- Conformance & Compliances
--

END