summaryrefslogtreecommitdiff
path: root/MIBS/junos/PPP-LCP-MIB
blob: dbf480529cd859721f968f81dcd9bd6395e458a5 (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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
PPP-LCP-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, transmission, Integer32, Counter32
        FROM SNMPv2-SMI
    OBJECT-GROUP
        FROM SNMPv2-CONF
    ifIndex
        FROM IF-MIB;

pppLcp MODULE-IDENTITY
    LAST-UPDATED "200309172059Z"  -- 17-Sep-03 04:59 PM EDT
    ORGANIZATION "IETF Network Working Group"
    CONTACT-INFO  
                "Author: Frank Kastenholz
                Jnxper Networks, Inc.
                Postal: 10 Technology Park Drive
                Westford, MA  01886-3146
                USA
                 Tel:    +1 978 589 5800
                 Email:  mib@Jnxper.net "
    DESCRIPTION
        "The Definitions of Managed Objects for the Link Control Protocol
         of the Point-to-Point Protocol.  Based on RFC 1471."
    -- Revision History
    REVISION    "200309172059Z"  -- 17-Sep-03 04:59 PM EDT
    DESCRIPTION
        "Created SMIv2 version."
    REVISION    "199306011200Z"  -- 01-Jun-93 08:00 AM EDT
    DESCRIPTION
        "Initial SMIv1 version of this MIB module found in RFC 1471."
    ::= { ppp 1 }

ppp OBJECT IDENTIFIER
    ::= { transmission 23 }

pppLink OBJECT IDENTIFIER
    ::= { pppLcp 1 }

pppLinkStatusTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF PppLinkStatusEntry
    MAX-ACCESS   not-accessible
    STATUS             current
    DESCRIPTION 
        "A table containing PPP-link specific variables for this PPP
         implementation."
    ::= { pppLink 1 }

pppLinkStatusEntry OBJECT-TYPE
    SYNTAX            PppLinkStatusEntry
    MAX-ACCESS   not-accessible
    STATUS              current
    DESCRIPTION 
        "Management information about a particular PPP Link."
    INDEX       { ifIndex }
    ::= { pppLinkStatusTable 1 }

PppLinkStatusEntry ::= SEQUENCE {
    pppLinkStatusPhysicalIndex                      Integer32,
    pppLinkStatusBadAddresses                       Counter32,
    pppLinkStatusBadControls                        Counter32,
    pppLinkStatusPacketTooLongs                     Counter32,
    pppLinkStatusBadFCSs                            Counter32,
    pppLinkStatusLocalMRU                           Integer32,
    pppLinkStatusRemoteMRU                          Integer32,
    pppLinkStatusLocalToPeerACCMap                  OCTET STRING,
    pppLinkStatusPeerToLocalACCMap                  OCTET STRING,
    pppLinkStatusLocalToRemoteProtocolCompression   INTEGER,
    pppLinkStatusRemoteToLocalProtocolCompression   INTEGER,
    pppLinkStatusLocalToRemoteACCompression         INTEGER,
    pppLinkStatusRemoteToLocalACCompression         INTEGER,
    pppLinkStatusTransmitFcsSize                    Integer32,
    pppLinkStatusReceiveFcsSize                     Integer32
}

pppLinkStatusPhysicalIndex OBJECT-TYPE	
    SYNTAX      Integer32 (0..2147483647)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The value of ifIndex that identifies the lower-level interface over
         which this PPP Link is operating. This interface would usually be 
         n HDLC or RS-232 type of interface. If there is no lower-layer 
         interface element, or there is no ifEntry for the element, or the
          element can not be identified, then the value of this object is 0.
          For example, suppose that PPP is operating over a serial port. 
          This would use two entries in the ifTable. The PPP could be 
          running over `interface' number 123 and the serial port could be
          running over `interface' number 987.  Therefore, ifSpecific.123
          would contain the OBJECT IDENTIFIER ppp 
          pppLinkStatusPhysicalIndex.123 would contain 987, and ifSpecific.987
           would contain the OBJECT IDENTIFIER for the serial-port's media-specific MIB."
    ::= { pppLinkStatusEntry 1 }

pppLinkStatusBadAddresses OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of packets received with an incorrect Address Field. 
        This counter is a component of the ifInErrors variable that is 
        associated with the interface that represents this PPP Link."
    REFERENCE   
        "Section 3.1, Address Field, of RFC1331."
    ::= { pppLinkStatusEntry 2 }

pppLinkStatusBadControls OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of packets received on this link with an incorrect
         Control Field. This counter is a component of the ifInErrors variable 
         that is associated with the interface that represents this PPP Link."
    REFERENCE   
        "Section 3.1, Control Field, of RFC1331."
    ::= { pppLinkStatusEntry 3 }

pppLinkStatusPacketTooLongs OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of received packets that have been discarded because their
         length exceeded the MRU. This counter is a component of the 
         ifInErrors variable that is associated with the interface that 
         represents this PPP Link. NOTE, packets which are longer than the 
         MRU but which are successfully received and processed are NOT 
         included in this count."
    ::= { pppLinkStatusEntry 4 }

pppLinkStatusBadFCSs OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of received packets that have been discarded due to having
         an incorrect FCS. This counter is a component of the ifInErrors
          variable that is associated with the interface that represents this PPP Link."
    ::= { pppLinkStatusEntry 5 }

pppLinkStatusLocalMRU OBJECT-TYPE
    SYNTAX      Integer32 (1..2147483647)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The current value of the MRU for the local PPP Entity. This value
         is the MRU that the remote entity is using when sending packets 
         to the local PPP entity. The value of this object is meaningful only 
         when the link has reached the open state (ifOperStatus is up)."
    ::= { pppLinkStatusEntry 6 }

pppLinkStatusRemoteMRU OBJECT-TYPE
    SYNTAX      Integer32 (1..2147483647)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The current value of the MRU for the remote PPP Entity. This value is
         the MRU that the local entity is using when sending packets to the 
         remote PPP entity. The value of this object is meaningful only when 
         the link has reached          the open state (ifOperStatus is up)."
    ::= { pppLinkStatusEntry 7 }

pppLinkStatusLocalToPeerACCMap OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE(4))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The current value of the ACC Map used for sending packets from the 
        local PPP entity to the remote PPP entity. The value of this object 
        is meaningful only when the link has reached the open state 
        (ifOperStatus is up)."
    ::= { pppLinkStatusEntry 8 }

pppLinkStatusPeerToLocalACCMap OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE(4))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The ACC Map used by the remote PPP entity when transmitting 
        packets to the local PPP entity. The value of this object is 
        meaningful only when the link has reached the open state
         (ifOperStatus is up)."
    ::= { pppLinkStatusEntry 9 }

pppLinkStatusLocalToRemoteProtocolCompression OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Indicates whether the local PPP entity will use Protocol 
        Compression when transmitting packets to the remote PPP entity. 
        The value of this object is meaningful only when the link 
        has reached the open state (ifOperStatus is         up)."
    ::= { pppLinkStatusEntry 10 }

pppLinkStatusRemoteToLocalProtocolCompression OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Indicates whether the remote PPP entity will use Protocol Compression
         when transmitting packets to the local PPP entity. The value of this
          object is meaningful only when the link has reached the open state
           (ifOperStatus is      up)."
    ::= { pppLinkStatusEntry 11 }

pppLinkStatusLocalToRemoteACCompression OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Indicates whether the local PPP entity will use Address and Control
         Compression when transmitting packets to the remote PPP entity. 
         The value of this object is meaningful only when the link has
          reached the open state       (ifOperStatus is up)."
    ::= { pppLinkStatusEntry 12 }

pppLinkStatusRemoteToLocalACCompression OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Indicates whether the remote PPP entity will use Address and
         Control Compression when transmitting packets to the local PPP entity. 
         The value of this object is meaningful only when the link has reached 
         the open state    (ifOperStatus is up)."
    ::= { pppLinkStatusEntry 13 }

pppLinkStatusTransmitFcsSize OBJECT-TYPE
    SYNTAX      Integer32 (0..128)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The size of the Frame Check Sequence (FCS) in bits that the local node
         will generate when sending packets to the remote node. The value of 
         this object is meaningful only when the link has reached the open 
         state (ifOperStatus is up)."
    ::= { pppLinkStatusEntry 14 }

pppLinkStatusReceiveFcsSize OBJECT-TYPE
    SYNTAX      Integer32 (0..128)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The size of the Frame Check Sequence (FCS) in bits that the
         remote node will generate when sending packets to the local node.
          The value of this object is meaningful only when the link has
           reached the open state (ifOperStatus is up)."
    ::= { pppLinkStatusEntry 15 }

pppLinkConfigTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF PppLinkConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "A table containing the LCP configuration parameters for this PPP Link.
         These variables represent the initial configuration of the PPP Link.
          The actual values of the parameters may be changed when the link
           is brought up via the LCP options negotiation mechanism."
    ::= { pppLink 2 }

pppLinkConfigEntry OBJECT-TYPE
    SYNTAX      PppLinkConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Configuration information about a particular PPP Link."
    INDEX       { ifIndex }
    ::= { pppLinkConfigTable 1 }

PppLinkConfigEntry ::= SEQUENCE {
    pppLinkConfigInitialMRU         Integer32,
    pppLinkConfigReceiveACCMap      OCTET STRING,
    pppLinkConfigTransmitACCMap     OCTET STRING,
    pppLinkConfigMagicNumber        INTEGER,
    pppLinkConfigFcsSize            Integer32
}

pppLinkConfigInitialMRU OBJECT-TYPE
    SYNTAX      Integer32 (0..2147483647)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The initial Maximum Receive Unit (MRU) that the local PPP entity
         will advertise to the remote entity. If the value of this variable 
         is 0 then the local PPP entity will not advertise any MRU to the
          remote entity and the default         MRU will be assumed. 
          Changing this object will have effect when the link is next restarted."
    REFERENCE   
        "Section 7.2, Maximum Receive Unit of RFC1331."
    DEFVAL      { 1500 }
    ::= { pppLinkConfigEntry 1 }

pppLinkConfigReceiveACCMap OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE(4))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The Asynchronous-Control-Character-Map (ACC) that the local PPP entity
         requires for use on its receive side. In effect, this is the ACC Map 
         that is required in order to ensure that the local modem will
         successfully receive all          characters. The actual ACC map
         used on the receive side of the link will be a combination of the
         local node's pppLinkConfigReceiveACCMap and the remote node's 
         pppLinkConfigTransmitACCMap. Changing this object will have effect
          when the link is next restarted."
    REFERENCE   
        "Section 7.3, page 4, Async-Control-Character-
         Map of RFC1331."
    DEFVAL      { 'ffffffff'H }
    ::= { pppLinkConfigEntry 2 }

pppLinkConfigTransmitACCMap OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE(4))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The Asynchronous-Control-Character-Map (ACC) that the local PPP
         entity requires for use on its transmit side. In effect, this is
         the ACC Map that is required in order to ensure that all characters
         can be successfully transmitted through the local modem.  The actual
         ACC map used on the transmit side of the link will be a
         combination of the local node's PppLinkConfigTransmitACCMap
         and the remote node's pppLinkConfigReceiveACCMap. Changing 
         this object will have effect when the link is next restarted."
    REFERENCE   
        "Section 7.3, page 4, Async-Control-Character-
         Map of RFC1331."
    DEFVAL      { 'ffffffff'H }
    ::= { pppLinkConfigEntry 3 }

pppLinkConfigMagicNumber OBJECT-TYPE
    SYNTAX      INTEGER { false(1), true(2) }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "If true(2) then the local node will attempt to perform Magic Number 
        negotiation with the remote node. If false(1) then this negotiation
         is not performed. In any event, the local node will comply with any 
         magic number negotiations attempted by the remote node, per the PPP 
         specification. Changing this object will have effect when the link
          is next restarted."
    REFERENCE   
        "Section 7.6, Magic Number, of RFC1331."
    DEFVAL      { false }
    ::= { pppLinkConfigEntry 4 }

pppLinkConfigFcsSize OBJECT-TYPE
    SYNTAX      Integer32 (0..128)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The size of the FCS, in bits, the local node will attempt
         to negotiate for use with the remote node. Regardless of the 
         value of this object, the local node will comply with any FCS
          size negotiations initiated by the remote node, per the PPP
           specification. Changing this object will have effect
            when the link is next restarted."
    DEFVAL      { 16 }
    ::= { pppLinkConfigEntry 5 }

END