summaryrefslogtreecommitdiff
path: root/MIBS/junose/Juniper-RADIUS-Proxy-MIB
blob: 88e286f114497e2374c1ea403f48c149be7ff398 (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
274
275
276
277
278
279
280
281
282
283

-- *****************************************************************************
-- Juniper-RADIUS-Proxy-MIB
--
-- Juniper Networks Enterprise MIB
--   RADIUS Proxy MIB
--
-- Copyright 2004 Juniper Networks, Inc.  All Rights Reserved.
-- *****************************************************************************

Juniper-RADIUS-Proxy-MIB  DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress
        FROM SNMPv2-SMI
    DisplayString, RowStatus, TruthValue
        FROM SNMPv2-TC
    MODULE-COMPLIANCE, OBJECT-GROUP
        FROM SNMPv2-CONF
    juniMibs
        FROM Juniper-MIBs;

juniRadiusProxyMIB  MODULE-IDENTITY
    LAST-UPDATED "200401231932Z"  -- 23-Jan-04 02:32 PM EST
    ORGANIZATION "Juniper Networks, Inc."
    CONTACT-INFO
        "       Juniper Networks, Inc.
        Postal: 10 Technology Park Drive
                Westford, MA  01886-3146
                USA
        Tel:    +1 978 589 5800
        Email:  mib@Juniper.net"
    DESCRIPTION
        "The RADIUS Proxy MIB for the Juniper Networks enterprise."
    -- Revision History
    REVISION    "200401231932Z"  -- 23-Jan-04 02:32 PM EST  - JUNOSe 6.0
    DESCRIPTION
        "Initial version of this MIB module."
    ::= { juniMibs 73 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed object groups
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniRadiusProxyObjects      OBJECT IDENTIFIER ::= { juniRadiusProxyMIB 1 }
juniRadiusGeneralProxy      OBJECT IDENTIFIER ::= { juniRadiusProxyObjects 1 }
juniRadiusAuthProxyCfg      OBJECT IDENTIFIER ::= { juniRadiusProxyObjects 2 }
juniRadiusAcctProxyCfg      OBJECT IDENTIFIER ::= { juniRadiusProxyObjects 3 }

-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for RADIUS General Proxy
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniRadiusProxyUdpChecksum  OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "Enables/disables the checksum calculations on RADIUS UDP packets."
    DEFVAL    { true }
    ::= { juniRadiusGeneralProxy 1 }


--
-- Configuration of RADIUS authentication proxy servers
--
juniRadiusAuthProxyCfgPortNumber  OBJECT-TYPE
    SYNTAX      Integer32 (0..65535)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The UDP port the RADIUS authentication proxy server will use.  The
        server will first be created, if necessary.  A value of 0 indicates the
        server should be deleted."
    DEFVAL    { 0 }
    ::= { juniRadiusAuthProxyCfg 1 }

juniRadiusAuthProxyCfgClientTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniRadiusAuthProxyCfgClientEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The table listing the clients with which the RADIUS authentication
        proxy server shares a secret."
    ::= { juniRadiusAuthProxyCfg 2 }

juniRadiusAuthProxyCfgClientEntry  OBJECT-TYPE
    SYNTAX      JuniRadiusAuthProxyCfgClientEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An entry (row) representing clients with which the RADIUS
        authentication proxy server shares a secret."
    INDEX     { juniRadiusAuthProxyCfgClientAddress,
                juniRadiusAuthProxyCfgClientMask }
    ::= { juniRadiusAuthProxyCfgClientTable 1 }

JuniRadiusAuthProxyCfgClientEntry ::= SEQUENCE {
    juniRadiusAuthProxyCfgClientAddress   IpAddress,
    juniRadiusAuthProxyCfgClientMask      IpAddress,
    juniRadiusAuthProxyCfgRowStatus       RowStatus,
    juniRadiusAuthProxyCfgClientKey       DisplayString }

juniRadiusAuthProxyCfgClientAddress  OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The IP Network Address of the RADIUS authentication proxy server's
        clients."
    ::= { juniRadiusAuthProxyCfgClientEntry 1 }

juniRadiusAuthProxyCfgClientMask  OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The IP Network Address Mask of the RADIUS authentication proxy server's
        clients."
    ::= { juniRadiusAuthProxyCfgClientEntry 2 }

juniRadiusAuthProxyCfgRowStatus  OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Supports 'createAndGo' and 'destroy' only."
    ::= { juniRadiusAuthProxyCfgClientEntry 3 }

juniRadiusAuthProxyCfgClientKey  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(0..32))
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The secret (RADIUS authenticator) used by the clients during exchanges
        with this authentication proxy server."
    DEFVAL    { ''H }
    ::= { juniRadiusAuthProxyCfgClientEntry 4 }


--
-- Configuration of RADIUS accounting proxy servers
--
juniRadiusAcctProxyCfgPortNumber  OBJECT-TYPE
    SYNTAX      Integer32 (0..65535)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The UDP port the RADIUS accounting proxy server will use.  The server
        will first be created, if necessary.  A value of 0 indicates the server
        should be deleted."
    DEFVAL    { 0 }
    ::= { juniRadiusAcctProxyCfg 1 }

juniRadiusAcctProxyCfgClientTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniRadiusAcctProxyCfgClientEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The table listing the clients with which the RADIUS accounting proxy
        server shares a secret."
    ::= { juniRadiusAcctProxyCfg 2 }

juniRadiusAcctProxyCfgClientEntry  OBJECT-TYPE
    SYNTAX      JuniRadiusAcctProxyCfgClientEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An entry (row) representing clients with which the RADIUS accounting
        proxy server shares a secret."
    INDEX     { juniRadiusAcctProxyCfgClientAddress,
                juniRadiusAcctProxyCfgClientMask }
    ::= { juniRadiusAcctProxyCfgClientTable 1 }

JuniRadiusAcctProxyCfgClientEntry ::= SEQUENCE {
    juniRadiusAcctProxyCfgClientAddress   IpAddress,
    juniRadiusAcctProxyCfgClientMask      IpAddress,
    juniRadiusAcctProxyCfgRowStatus       RowStatus,
    juniRadiusAcctProxyCfgClientKey       DisplayString }

juniRadiusAcctProxyCfgClientAddress  OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The IP Network Address of the RADIUS accounting proxy server's
        clients."
    ::= { juniRadiusAcctProxyCfgClientEntry 1 }

juniRadiusAcctProxyCfgClientMask  OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The IP Network Address Mask of the RADIUS accounting proxy server's
        clients."
    ::= { juniRadiusAcctProxyCfgClientEntry 2 }

juniRadiusAcctProxyCfgRowStatus  OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Supports 'createAndGo' and 'destroy' only."
    ::= { juniRadiusAcctProxyCfgClientEntry 3 }

juniRadiusAcctProxyCfgClientKey  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(0..32))
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The secret (RADIUS authenticator) used by the clients during exchanges
        with this accounting proxy server."
    DEFVAL    { ''H }
    ::= { juniRadiusAcctProxyCfgClientEntry 4 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniRadiusProxyMIBConformance  OBJECT IDENTIFIER
    ::= { juniRadiusProxyMIB 2 }
juniRadiusProxyMIBCompliances  OBJECT IDENTIFIER
    ::= { juniRadiusProxyMIBConformance 1 }
juniRadiusProxyMIBGroups       OBJECT IDENTIFIER
    ::= { juniRadiusProxyMIBConformance 2 }

--
-- compliance statements
--
juniRadiusProxyCompliance  MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION
        "The compliance statement for entities implementing the JUNOSe RADIUS
        Proxy Server MIB functionality."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniRadiusBasicProxyGroup }
        GROUP       juniRadiusAuthProxyGroup
            DESCRIPTION
                "This group is mandatory only for those JUNOSe agents that
                implement authentication support."
        GROUP       juniRadiusAcctProxyGroup
            DESCRIPTION
                "This group is mandatory only for those JUNOSe agents that
                implement accounting support."
    ::= { juniRadiusProxyMIBCompliances 1 }                         -- RX 5.3


--
-- units of conformance
--
juniRadiusBasicProxyGroup  OBJECT-GROUP
    OBJECTS {
        juniRadiusProxyUdpChecksum }
    STATUS      current
    DESCRIPTION
        "A collection of objects providing basic management of RADIUS Proxy
        Servers."
    ::= { juniRadiusProxyMIBGroups 1 }

juniRadiusAuthProxyGroup  OBJECT-GROUP
    OBJECTS {
        juniRadiusAuthProxyCfgPortNumber,
        juniRadiusAuthProxyCfgRowStatus,
        juniRadiusAuthProxyCfgClientKey }
    STATUS      current
    DESCRIPTION
        "A collection of objects providing management of RADIUS Authentication
        Proxy Servers."
    ::= { juniRadiusProxyMIBGroups 2 }

juniRadiusAcctProxyGroup  OBJECT-GROUP
    OBJECTS {
        juniRadiusAcctProxyCfgPortNumber,
        juniRadiusAcctProxyCfgRowStatus,
        juniRadiusAcctProxyCfgClientKey }
    STATUS      current
    DESCRIPTION
        "A collection of objects providing management of RADIUS Accounting Proxy
        Servers."
    ::= { juniRadiusProxyMIBGroups 3 }

END