summaryrefslogtreecommitdiff
path: root/MIBS/junose/Juniper-SUBSCRIBER-MIB
blob: c68a695c79e7510e4dcb141cb11b1cb1367f6f96 (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

-- *****************************************************************************
-- Juniper-SUBSCRIBER-MIB
--
-- Juniper Networks Enterprise MIB
--   Subscriber MIB
--
-- Copyright (c) 2000, 2002 Unisphere Networks, Inc.
-- Copyright (c) 2002 Juniper Networks, Inc.
--   All Rights Reserved.
-- *****************************************************************************

Juniper-SUBSCRIBER-MIB  DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE
        FROM SNMPv2-SMI
    TEXTUAL-CONVENTION, DisplayString
        FROM SNMPv2-TC
    MODULE-COMPLIANCE, OBJECT-GROUP
        FROM SNMPv2-CONF
    InterfaceIndex
        FROM IF-MIB
    juniMibs
        FROM Juniper-MIBs
    JuniEnable
        FROM Juniper-TC;

juniSubscriberMIB  MODULE-IDENTITY
    LAST-UPDATED "200209162144Z"  -- 16-Sep-02 05:44 PM EDT
    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 Subscriber MIB for the Juniper Networks enterprise."
    -- Revision History
    REVISION    "200209162144Z"  -- 16-Sep-02 05:44 PM EDT  - JUNOSe 5.0
    DESCRIPTION
        "Replaced Unisphere names with Juniper names."
    REVISION    "200205101953Z"  -- 10-May-02 03:53 PM EDT  - JUNOSe 4.0
    DESCRIPTION
        "Added local authentication support."
    REVISION    "200011160000Z"  -- 16-Nov-00               - JUNOSe 3.0
    DESCRIPTION
        "Initial version of this MIB module."
    ::= { juniMibs 49 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Textual conventions
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
JuniSubscrEncaps ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "Encapsulated protocol type."
    SYNTAX      INTEGER {
                    ip(0),
                    bridgedEthernet(19) }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed object groups
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniSubscrObjects        OBJECT IDENTIFIER ::= {juniSubscriberMIB 1}

-- Functional groups
juniSubscrLocal          OBJECT IDENTIFIER ::= {juniSubscrObjects 1}


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniSubscrLocalTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniSubscrLocalEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Permits local configuration associating a remote subscriber's identity
        with a local interface, for use in circumstances where the remote
        subscriber's identity cannot be queried directly (e.g. dynamic IPoA
        operation)."
    ::= { juniSubscrLocal 1 }

juniSubscrLocalEntry OBJECT-TYPE
    SYNTAX      JuniSubscrLocalEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Local configuration associating a remote subscriber's identity with a
        local interface."
    INDEX     { juniSubscrLocalIfIndex,
                juniSubscrLocalEncaps }
    ::= { juniSubscrLocalTable 1 }

JuniSubscrLocalEntry ::= SEQUENCE {
    juniSubscrLocalIfIndex           InterfaceIndex,
    juniSubscrLocalEncaps            JuniSubscrEncaps,
    juniSubscrLocalControl           INTEGER,
    juniSubscrLocalNamePrefix        JuniEnable,
    juniSubscrLocalName              DisplayString,
    juniSubscrLocalPasswordPrefix    JuniEnable,
    juniSubscrLocalPassword          DisplayString,
    juniSubscrLocalDomain            DisplayString,
    juniSubscrLocalAuthentication    JuniEnable }

juniSubscrLocalIfIndex OBJECT-TYPE
    SYNTAX      InterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The ifIndex of the interface to which this subscriber information
        applies."
    ::= { juniSubscrLocalEntry 1 }

juniSubscrLocalEncaps OBJECT-TYPE
    SYNTAX      JuniSubscrEncaps
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The incoming data encapsulation to which this subscriber information
        applies.  An interface may have a unique subscriber identity configured
        for each incoming data encapsulation it supports."
    ::= { juniSubscrLocalEntry 2 }

juniSubscrLocalControl OBJECT-TYPE
    SYNTAX      INTEGER {
                    ok(0),
                    clear(1) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "When set to clear(1), causes the subscriber information in this entry
        to be cleared.  When set to ok(0), there is no effect and subscriber
        information is unchanged.

        When read, always returns a value of ok(0).

        No other object in this entry can be set simultaneously, otherwise an
        InconsistentValue error is reported."
    ::= { juniSubscrLocalEntry 3 }

juniSubscrLocalNamePrefix OBJECT-TYPE
    SYNTAX      JuniEnable
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "If enabled, indicates whether the value of juniSubscrLocalName is a
        prefix rather than a full name."
    ::= { juniSubscrLocalEntry 4 }

juniSubscrLocalName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(0..31))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The subscriber's name.

        If juniSubscrLocalNamePrefix has the value 'enabled', the value of this
        object serves as the prefix of a full subscriber name.  The full name is
        constructed by appending local geographic information (slot, port, etc.)
        that uniquely distinguishes the subscriber."
    ::= { juniSubscrLocalEntry 5 }

juniSubscrLocalPasswordPrefix OBJECT-TYPE
    SYNTAX      JuniEnable
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "If enabled, indicates whether the value of juniSubscrLocalPassword
        prefix rather than a full password."
    ::= { juniSubscrLocalEntry 6 }

juniSubscrLocalPassword OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(0..31))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The subscriber's password.

        If juniSubscrLocalPasswordPrefix has the value 'enabled', the value of
        this object serves as the prefix of a full subscriber password.  The
        full password is constructed by appending local geographic information
        (slot, port, etc.) that uniquely distinguishes the subscriber."
    ::= { juniSubscrLocalEntry 7 }

juniSubscrLocalDomain OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(0..31))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The subscriber's domain."
    ::= { juniSubscrLocalEntry 8 }

juniSubscrLocalAuthentication OBJECT-TYPE
    SYNTAX      JuniEnable
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "When enabled, the interface performs authentication with RADIUS server
        using the configured subscriber information and associated with the
        incoming data encapsulation (juniSubscriberLocalEncaps)."
    DEFVAL    { enable }
    ::= { juniSubscrLocalEntry 9 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniSubscriberMIBConformance
             OBJECT IDENTIFIER ::= { juniSubscriberMIB 4 }
juniSubscriberMIBCompliances
             OBJECT IDENTIFIER ::= { juniSubscriberMIBConformance 1 }
juniSubscriberMIBGroups
             OBJECT IDENTIFIER ::= { juniSubscriberMIBConformance 2 }

--
-- compliance statements
--
juniSubscriberCompliance  MODULE-COMPLIANCE
    STATUS      obsolete
    DESCRIPTION
        "Obsolete compliance statement for systems supporting subscriber
        operation.  This statement became obsolete when local authentication
        support was added."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniSubscriberLocalGroup }
    ::= { juniSubscriberMIBCompliances 1 }

juniSubscriberCompliance2  MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION
        "The compliance statement for systems supporting subscriber operation."
    MODULE  -- this module
        MANDATORY-GROUPS { juniSubscriberLocalGroup2 }
    ::= { juniSubscriberMIBCompliances 2 }

--
-- units of conformance
--
juniSubscriberLocalGroup OBJECT-GROUP
    OBJECTS {
        juniSubscrLocalControl,
        juniSubscrLocalNamePrefix,
        juniSubscrLocalName,
        juniSubscrLocalPasswordPrefix,
        juniSubscrLocalPassword,
        juniSubscrLocalDomain }
    STATUS      obsolete
    DESCRIPTION
        "Obsolete basic collection of objects providing management of
        locally-configured subscriber identities in a Juniper product.  This
        group became obsolete when local authentication support was added."
    ::= { juniSubscriberMIBGroups 1 }

juniSubscriberLocalGroup2 OBJECT-GROUP
    OBJECTS {
        juniSubscrLocalControl,
        juniSubscrLocalNamePrefix,
        juniSubscrLocalName,
        juniSubscrLocalPasswordPrefix,
        juniSubscrLocalPassword,
        juniSubscrLocalDomain,
        juniSubscrLocalAuthentication }
    STATUS      current
    DESCRIPTION
        "The basic collection of objects providing management of
        locally-configured subscriber identities in a Juniper product."
    ::= { juniSubscriberMIBGroups 2 }

END