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
|
-- ****************************************************************************
-- COLUBRIS-LICENSE-MIB definitions
--
-- Copyright (c) 2006, Colubris Networks, Inc.
-- All Rights Reserved.
--
-- Colubris Licensing Information MIB file.
--
-- ****************************************************************************
COLUBRIS-LICENSE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Integer32
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
colubrisMgmtV2
FROM COLUBRIS-SMI
;
colubrisLicenseMIB MODULE-IDENTITY
LAST-UPDATED "200606070000Z"
ORGANIZATION "Colubris Networks, Inc."
CONTACT-INFO "Colubris Networks
Postal: 200 West Street Ste 300
Waltham, Massachusetts 02451-1121
UNITED STATES
Phone: +1 781 684 0001
Fax: +1 781 684 0009
E-mail: cn-snmp@colubris.com"
DESCRIPTION "Colubris Licensing Information MIB."
::= { colubrisMgmtV2 29 }
-- colubrisLicenseMIB definition
colubrisLicenseMIBObjects OBJECT IDENTIFIER ::= { colubrisLicenseMIB 1 }
-- colubris License Information groups
coLicenseGroup OBJECT IDENTIFIER ::= { colubrisLicenseMIBObjects 1 }
-- The License Group
coLicenseFeatureTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoLicenseFeatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "License information attributes."
::= { coLicenseGroup 1 }
coLicenseFeatureEntry OBJECT-TYPE
SYNTAX CoLicenseFeatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coLicenseFeatureTable.
coLicenseFeatureIndex - Uniquely identify a license
feature in a Colubris product."
INDEX { coLicenseFeatureIndex }
::= { coLicenseFeatureTable 1 }
CoLicenseFeatureEntry ::= SEQUENCE
{
coLicenseFeatureIndex Integer32,
coLicenseFeatureName DisplayString,
coLicenseFeatureState INTEGER,
coLicenseFeatureEndingDate OCTET STRING,
coLicenseFeatureRemainingDays Integer32
}
coLicenseFeatureIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Uniquely identify a license feature in a
Colubris product."
::= { coLicenseFeatureEntry 1 }
coLicenseFeatureName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Friendly name of the license feature."
::= { coLicenseFeatureEntry 2 }
coLicenseFeatureState OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates if the feature is enabled or disabled."
::= { coLicenseFeatureEntry 3 }
coLicenseFeatureEndingDate OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the date when the feature will be
deactivated. The format of the date is YYYY/MM/DD."
::= { coLicenseFeatureEntry 4 }
coLicenseFeatureRemainingDays OBJECT-TYPE
SYNTAX Integer32 (0..9999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the number of days when the feature will be
deactivated. If the feature is permanent, the value
9999 is returned."
::= { coLicenseFeatureEntry 5 }
-- conformance information
colubrisLicenseMIBConformance OBJECT IDENTIFIER ::= { colubrisLicenseMIB 2 }
colubrisLicenseMIBCompliances OBJECT IDENTIFIER ::= { colubrisLicenseMIBConformance 1 }
colubrisLicenseMIBGroups OBJECT IDENTIFIER ::= { colubrisLicenseMIBConformance 2 }
-- compliance statements
colubrisLicenseMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for the License Information MIB."
MODULE MANDATORY-GROUPS
{
colubrisLicenseMIBGroup
}
::= { colubrisLicenseMIBCompliances 1 }
-- units of conformance
colubrisLicenseMIBGroup OBJECT-GROUP
OBJECTS {
coLicenseFeatureName,
coLicenseFeatureState,
coLicenseFeatureEndingDate,
coLicenseFeatureRemainingDays
}
STATUS current
DESCRIPTION "A collection of objects for the license information status."
::= { colubrisLicenseMIBGroups 1 }
END
|