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
|
-- ****************************************************************************
-- COLUBRIS-USER-ACCOUNT-MIB definitions
--
-- Copyright (c) 2007, Colubris Networks, Inc.
-- All Rights Reserved.
--
-- Colubris User Account file.
--
-- ****************************************************************************
COLUBRIS-USER-ACCOUNT-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
;
colubrisUserAccountMIB MODULE-IDENTITY
LAST-UPDATED "200704180000Z"
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 User Account MIB."
::= { colubrisMgmtV2 35 }
-- colubrisUserAccountMIB definition
colubrisUserAccountMIBObjects OBJECT IDENTIFIER ::= { colubrisUserAccountMIB 1 }
-- colubris User Account groups
coUserAccountStatusGroup OBJECT IDENTIFIER ::= { colubrisUserAccountMIBObjects 1 }
-- The User Account Status Group
coUserAccountStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoUserAccountStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "User account attributes."
::= { coUserAccountStatusGroup 1 }
coUserAccountStatusEntry OBJECT-TYPE
SYNTAX CoUserAccountStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coUserAccountStatusTable.
coUserAccIndex - Uniquely identifies a user account on
the MultiService Controller."
INDEX { coUserAccIndex }
::= { coUserAccountStatusTable 1 }
CoUserAccountStatusEntry ::= SEQUENCE
{
coUserAccIndex Integer32,
coUserAccUserName DisplayString,
coUserAccPlanName DisplayString,
coUserAccRemainingOnlineTime Integer32,
coUserAccFirstLoginTime DisplayString,
coUserAccRemainingSessionTime Integer32,
coUserAccStatus INTEGER,
coUserAccExpirationTime DisplayString
}
coUserAccIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Specifies the index of the user account."
::= { coUserAccountStatusEntry 1 }
coUserAccUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "User name corresponding to the user account."
::= { coUserAccountStatusEntry 2 }
coUserAccPlanName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the subscription plan name associated to
this account."
::= { coUserAccountStatusEntry 3 }
coUserAccRemainingOnlineTime OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The online remaining time for this account."
::= { coUserAccountStatusEntry 4 }
coUserAccFirstLoginTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "First login time recorded for this account."
::= { coUserAccountStatusEntry 5 }
coUserAccRemainingSessionTime OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Time before next logout."
::= { coUserAccountStatusEntry 6 }
coUserAccStatus OBJECT-TYPE
SYNTAX INTEGER
{
valid(1),
invalid(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current Status of the user account based on the rules
defined in the subscription plan."
::= { coUserAccountStatusEntry 7 }
coUserAccExpirationTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field include the Date and time of the account
expiration based on the subscription plan."
::= { coUserAccountStatusEntry 8 }
-- User Account notifications
colubrisUserAccountMIBNotificationPrefix OBJECT IDENTIFIER ::= { colubrisUserAccountMIB 2 }
colubrisUserAccountMIBNotifications OBJECT IDENTIFIER ::= { colubrisUserAccountMIBNotificationPrefix 0 }
-- conformance information
colubrisUserAccountMIBConformance OBJECT IDENTIFIER ::= { colubrisUserAccountMIB 3 }
colubrisUserAccountMIBCompliances OBJECT IDENTIFIER ::= { colubrisUserAccountMIBConformance 1 }
colubrisUserAccountMIBGroups OBJECT IDENTIFIER ::= { colubrisUserAccountMIBConformance 2 }
-- compliance statements
colubrisUserAccountMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for the User Account MIB."
MODULE MANDATORY-GROUPS
{
colubrisUserAccountStatusMIBGroup
}
::= { colubrisUserAccountMIBCompliances 1 }
-- units of conformance
colubrisUserAccountStatusMIBGroup OBJECT-GROUP
OBJECTS {
coUserAccUserName,
coUserAccPlanName,
coUserAccRemainingOnlineTime,
coUserAccFirstLoginTime,
coUserAccRemainingSessionTime,
coUserAccStatus,
coUserAccExpirationTime
}
STATUS current
DESCRIPTION "A collection of objects for User Account status."
::= { colubrisUserAccountMIBGroups 1 }
END
|