summaryrefslogtreecommitdiff
path: root/MIBS/hpmsm/COLUBRIS-AAA-CLIENT-MIB.my
blob: 0d46072e0f141bf39d748700e3cd0d8f8b87294d (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
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
-- ****************************************************************************
--  COLUBRIS-AAA-CLIENT-MIB definitions
--
--  Copyright (c) 2004, Colubris Networks, Inc.
--  All Rights Reserved.
--
--  Colubris Networks AAA Client MIB file.
--
-- ****************************************************************************


COLUBRIS-AAA-CLIENT-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE,
    Integer32
        FROM    SNMPv2-SMI
    MODULE-COMPLIANCE, OBJECT-GROUP
        FROM    SNMPv2-CONF
    DisplayString
        FROM    SNMPv2-TC
    colubrisMgmtV2
        FROM    COLUBRIS-SMI
    ColubrisProfileIndex, ColubrisServerIndex, ColubrisServerIndexOrZero
        FROM    COLUBRIS-TC
;


colubrisAAAClientMIB MODULE-IDENTITY
    LAST-UPDATED    "200402200000Z"
    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 Networks AAA Client MIB file."

    ::= { colubrisMgmtV2 5 }


-- colubrisAAAClientObjects definition
colubrisAAAClientObjects OBJECT IDENTIFIER ::= { colubrisAAAClientMIB 1 }

-- colubris AAA groups
colubrisAAAProfileGroup  OBJECT IDENTIFIER ::= { colubrisAAAClientObjects 1 }
colubrisAAAServerGroup   OBJECT IDENTIFIER ::= { colubrisAAAClientObjects 2 }

-- AAA profile group
colubrisAAAProfileTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF ColubrisAAAProfileEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "A table defining the AAA server profiles currently configured
                 on the device."
    ::= { colubrisAAAProfileGroup 1 }

colubrisAAAProfileEntry OBJECT-TYPE
    SYNTAX      ColubrisAAAProfileEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "A AAA server profile configured in the device.
                 colubrisAAAProfileIndex - Uniquely identifies the profile
                                           within the profile table."
    INDEX       { colubrisAAAProfileIndex }
    ::= { colubrisAAAProfileTable 1 }

ColubrisAAAProfileEntry ::= SEQUENCE
{
    colubrisAAAProfileIndex                 ColubrisProfileIndex,
    colubrisAAAProfileName                  DisplayString,
    colubrisAAAProfilePrimaryServerIndex    ColubrisServerIndexOrZero,
    colubrisAAAProfileSecondaryServerIndex  ColubrisServerIndexOrZero
}

colubrisAAAProfileIndex OBJECT-TYPE
    SYNTAX      ColubrisProfileIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "Specifies the index of the AAA server profile."
    ::= { colubrisAAAProfileEntry 1 }

colubrisAAAProfileName OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION "Specifies the name of the AAA server profile."
    ::= { colubrisAAAProfileEntry 2 }

colubrisAAAProfilePrimaryServerIndex OBJECT-TYPE
    SYNTAX      ColubrisServerIndexOrZero
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the index number of the primary server profile in the table.
                 A value of zero indicates that no AAA server is defined."
    ::= { colubrisAAAProfileEntry 3 }

colubrisAAAProfileSecondaryServerIndex OBJECT-TYPE
    SYNTAX      ColubrisServerIndexOrZero
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the index number of the secondary server profile in the table.
                 A value of zero indicates that no AAA server is defined."
    ::= { colubrisAAAProfileEntry 4 }

-- AAA server table
colubrisAAAServerTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF ColubrisAAAServerEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "A table containing the AAA servers currently configured on the
                 device."
    ::= { colubrisAAAServerGroup 1 }

colubrisAAAServerEntry OBJECT-TYPE
    SYNTAX      ColubrisAAAServerEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "An AAA server configured on the device.
                 colubrisAAAServerIndex - Uniquely identifies a server inside
                                          the server table."
    INDEX       { colubrisAAAServerIndex }
    ::=   { colubrisAAAServerTable 1 }

ColubrisAAAServerEntry ::= SEQUENCE
{
    colubrisAAAServerIndex          ColubrisServerIndex,
    colubrisAAAAuthenProtocol       INTEGER,
    colubrisAAAAuthenMethod         INTEGER,
    colubrisAAAServerName           OCTET STRING,
    colubrisAAASharedSecret         DisplayString,
    colubrisAAAAuthenticationPort   Integer32,
    colubrisAAAAccountingPort       Integer32,
    colubrisAAATimeout              Integer32,
    colubrisAAANASId                OCTET STRING
}

colubrisAAAServerIndex OBJECT-TYPE
    SYNTAX      ColubrisServerIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "Specifies the index of the AAA server in the table."
    ::= { colubrisAAAServerEntry 1 }

colubrisAAAAuthenProtocol OBJECT-TYPE
    SYNTAX      INTEGER
                {
                    radius(1)
                }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the protocol used by the AAA client to communicate
                 with the AAA server."
    ::= { colubrisAAAServerEntry 2 }

colubrisAAAAuthenMethod OBJECT-TYPE
    SYNTAX      INTEGER
                {
                    pap(1),
                    chap(2),
                    mschap(3),
                    mschapv2(4),
                    eapMd5(5)
                }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the authentication method used by the AAA client
                 to authenticate users via the AAA server."
    ::= { colubrisAAAServerEntry 3 }

colubrisAAAServerName OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE (0..15))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION "Specifies the IP address of the AAA server. The string 
                 must be a valid IP address in the format 'nnn.nnn.nnn.nnn'
                 Where 'nnn' is a number in the range [0..255]. The '.' 
                 character is mandatory between the fields."
    ::= { colubrisAAAServerEntry 4 }

colubrisAAASharedSecret OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION "Specifies the shared secret used by the AAA client and 
                 the AAA server. This attribute should only be set if AAA 
                 traffic between the AAA client and server is sent through
                 a VPN tunnel. Reading this attribute will always return 
                 a zero-length string."
    ::= { colubrisAAAServerEntry 5 }

colubrisAAAAuthenticationPort OBJECT-TYPE
    SYNTAX      Integer32 (1..65535)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the port number used by the AAA client to send
                 authentication requests to the AAA server."
    ::= { colubrisAAAServerEntry 6 }

colubrisAAAAccountingPort OBJECT-TYPE
    SYNTAX      Integer32 (1..65535)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the port number used by the AAA client to send
                 accounting information to the AAA server."
    ::= { colubrisAAAServerEntry 7 }

colubrisAAATimeout OBJECT-TYPE
    SYNTAX      Integer32 (3..100)
    UNITS       "seconds"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates how long the AAA client will wait for an answer
                 to an authentication request."
    ::= { colubrisAAAServerEntry 8 }
            
colubrisAAANASId OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE (0..253))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the network access server ID to be sent by the
                 AAA client in each authentication request sent to the 
                 AAA server."
    ::= { colubrisAAAServerEntry 9 }

-- conformance information
colubrisAAAClientMIBConformance OBJECT IDENTIFIER ::= { colubrisAAAClientMIB 2 }
colubrisAAAClientMIBCompliances OBJECT IDENTIFIER ::= { colubrisAAAClientMIBConformance 1 }
colubrisAAAClientMIBGroups      OBJECT IDENTIFIER ::= { colubrisAAAClientMIBConformance 2 }

-- compliance statements     
colubrisAAAClientMIBCompliance MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION "The compliance statement for entities which implement
                 the Colubris Networks AAA client MIB."
    MODULE      MANDATORY-GROUPS
                    {
                        colubrisAAAProfileMIBGroup,
                        colubrisAAAClientMIBGroup
                    }
    ::= { colubrisAAAClientMIBCompliances 1 }

-- units of conformance
colubrisAAAProfileMIBGroup OBJECT-GROUP
    OBJECTS     {
                    colubrisAAAProfileName,
                    colubrisAAAProfilePrimaryServerIndex,
                    colubrisAAAProfileSecondaryServerIndex
                }
    STATUS      current
    DESCRIPTION "A collection of objects providing the AAA profile capability."
    ::= { colubrisAAAClientMIBGroups 1 }

colubrisAAAClientMIBGroup OBJECT-GROUP
    OBJECTS     {
                    colubrisAAAAuthenProtocol,
                    colubrisAAAAuthenMethod,
                    colubrisAAAServerName,
                    colubrisAAASharedSecret,
                    colubrisAAAAuthenticationPort,
                    colubrisAAAAccountingPort,
                    colubrisAAATimeout,
                    colubrisAAANASId
                }
    STATUS      current
    DESCRIPTION "A collection of objects providing the AAA client MIB
                 capability."
    ::= { colubrisAAAClientMIBGroups 2 }

END