summaryrefslogtreecommitdiff
path: root/MIBS/telco-systems/binox/PRVT-MPLS-IF-MIB
blob: 7419051d1d6b1908bbca3af5ae94c61abe86fed0 (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
-- *********************************************************************
-- **
-- ** BATM Advanced Communications.
-- **
-- *********************************************************************
-- ** Filename: PRVT-MPLS-IF-MIB.mib
-- ** Project: T-Metro Switches.
-- ** Purpose: Private MIB
-- *********************************************************************
-- (c) Copyright, 2009, BATM Advanced Communications. All rights reserved.
-- WARNING:
--
-- BY UTILIZING THIS FILE, YOU AGREE TO THE FOLLOWING:
--
-- This file is the property of BATM Advanced Communications and contains
-- proprietary and confidential information. This file is made
-- available to authorized BATM customers on the express
-- condition that neither it, nor any of the information contained
-- therein, shall be disclosed to third parties or be used for any
-- purpose other than to replace, modify or upgrade firmware and/or
-- software components of BATM manufactured equipment within the
-- authorized customer's network, and that such transfer be
-- completed in accordance with the instructions provided by
-- BATM. Any other use is strictly prohibited.
--
-- EXCEPT AS RESTRICTED BY LAW, OR AS PROVIDED IN BATM'S LIMITED
-- WARRANTY, THE SOFTWARE PROGRAMS CONTAINED IN THIS FILE ARE
-- PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES
-- OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
--
-- IN NO EVENT SHALL BATM BE LIABLE FOR ANY DAMAGES WHATSOEVER
-- INCLUDING WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS
-- PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION OR
-- OTHER CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE, OR INABILITY
-- TO USE, THE SOFTWARE CONTAINED IN THIS FILE.
--
-- ----------------------------------------------------------------------------

PRVT-MPLS-IF-MIB DEFINITIONS ::= BEGIN

IMPORTS
    ifIndex
        FROM IF-MIB
    mpls
        FROM PRVT-SWITCH-MIB
    Integer32, MODULE-IDENTITY, OBJECT-TYPE
        FROM SNMPv2-SMI
    RowStatus, TEXTUAL-CONVENTION, TruthValue
        FROM SNMPv2-TC;

prvtMplsIfMIB MODULE-IDENTITY
    LAST-UPDATED "201108050000Z"
    ORGANIZATION 
        "BATM Advanced Communication"
    CONTACT-INFO 
        "BATM/Telco Systems Support team
         Email:
         For North America: techsupport@telco.com
         For North Europe: support@batm.de, info@batm.de
         For the rest of the world: techsupport@telco.com"
    DESCRIPTION 
        "This module includes configuration parameters for MPLS and RSVP interface specific parameters."
    REVISION    "201108050000Z"
    DESCRIPTION 
        "Added ifaceMplsRsvpEgrLabelUsage, ifaceMplsLdpEgrLabelUsage, ifaceMplsSignalCapabilities."
    REVISION    "201004280000Z"
    DESCRIPTION 
        "Initial version."
    ::= { mpls 6 }


PrvtMplsIpAddressMask ::= TEXTUAL-CONVENTION
    DISPLAY-HINT "1d.1d.1d.1d/1d"
    STATUS      current
    DESCRIPTION 
        "An IPv4 address and mask represented as a 5 octet string.
         First four octets are the IP address. The fifth octet is the IP mask."
    SYNTAX      OCTET STRING (SIZE(5))

EgressLabelUsageType ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION 
        "Possible egress label usage values."
    SYNTAX      INTEGER { global(0), implicitNull(1), explicitNull(2) }

prvtMplsIfMIBObjects OBJECT IDENTIFIER
    ::= { prvtMplsIfMIB 1 }

prvtMplsIfaceObjs OBJECT IDENTIFIER
    ::= { prvtMplsIfMIBObjects 1 }

prvtMplsIfaceTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF PrvtMplsIfaceEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This table contains object for configuring MPLS and LDP interface specific parameters."
    ::= { prvtMplsIfaceObjs 1 }

prvtMplsIfaceEntry OBJECT-TYPE
    SYNTAX      PrvtMplsIfaceEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "An entry in prvtMplsIfaceTable."
    INDEX       { ifIndex }
    ::= { prvtMplsIfaceTable 1 }

PrvtMplsIfaceEntry ::= SEQUENCE {
    ifaceMplsRowStatus              RowStatus,
    ifaceMplsEnable                 TruthValue,
    ifaceMplsPHPEnable              TruthValue,
    ifaceMplsLdpHelloHoldTimer      Integer32,
    ifaceMplsLdpKeepaliveHoldTimer  Integer32,
    ifaceMplsRsvpEgrLabelUsage      EgressLabelUsageType,
    ifaceMplsLdpEgrLabelUsage       EgressLabelUsageType,
    ifaceMplsSignalCapabilities     BITS
}

ifaceMplsRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION 
        "The RowStatus for this interface."
    ::= { prvtMplsIfaceEntry 1 }

ifaceMplsEnable OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION 
        "Enable or disable MPLS on this interface."
    ::= { prvtMplsIfaceEntry 2 }

ifaceMplsPHPEnable OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION 
        "Enable or disable Penultimate Hop Popping on this interface."
    ::= { prvtMplsIfaceEntry 3 }

ifaceMplsLdpHelloHoldTimer OBJECT-TYPE
    SYNTAX      Integer32 (0..65535)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION 
        "The LDP Hello Hold Time for this interface."
    ::= { prvtMplsIfaceEntry 4 }

ifaceMplsLdpKeepaliveHoldTimer OBJECT-TYPE
    SYNTAX      Integer32 (0..65535)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION 
        "The LDP Keep-alive Hold Time for this interface."
    ::= { prvtMplsIfaceEntry 5 }

ifaceMplsRsvpEgrLabelUsage OBJECT-TYPE
    SYNTAX      EgressLabelUsageType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION 
        "The egress label usage for RSVP."
    ::= { prvtMplsIfaceEntry 7 }

ifaceMplsLdpEgrLabelUsage OBJECT-TYPE
    SYNTAX      EgressLabelUsageType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION 
        "The egress label usage for LDP."
    ::= { prvtMplsIfaceEntry 8 }

ifaceMplsSignalCapabilities OBJECT-TYPE
    SYNTAX      BITS { sigCapsRsvp(0), sigCapsLdp(1), sigCapsData(7) }
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION 
        "A bit map specifying the signaling capabilities that this MPLS
         interface is to have.
         Setting the bit sigCapsRsvp will enable RSVP signaling.
         Setting the bit sigCapsLdp will enable LDP signaling.
         The bit sigCapsData must always be set."
    ::= { prvtMplsIfaceEntry 9 }

prvtMplsRouteObjs OBJECT IDENTIFIER
    ::= { prvtMplsIfMIBObjects 2 }

prvtMplsRouteProtocolTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF PrvtMplsRouteProtocolEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This table contains the configuration of the egress and ingress routes for LDP label
         packets."
    ::= { prvtMplsRouteObjs 1 }

prvtMplsRouteProtocolEntry OBJECT-TYPE
    SYNTAX      PrvtMplsRouteProtocolEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "An entry in the table represents the configuration of a particular route type for ingress
         or egress."
    INDEX       { prvtMplsRouteProtocolDirection, 
                  prvtMplsRouteProtocolType }
    ::= { prvtMplsRouteProtocolTable 1 }

PrvtMplsRouteProtocolEntry ::= SEQUENCE {
    prvtMplsRouteProtocolDirection  INTEGER,
    prvtMplsRouteProtocolType       INTEGER,
    prvtMplsRouteProtocolRowStatus  RowStatus
}

prvtMplsRouteProtocolDirection OBJECT-TYPE
    SYNTAX      INTEGER { ingress(1), egress(2) }
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The direction of the route that will be used to receive or send LDP packets."
    ::= { prvtMplsRouteProtocolEntry 1 }

prvtMplsRouteProtocolType OBJECT-TYPE
    SYNTAX      INTEGER { bgp(1), connected(2), isisl1(3), isisl2(4), 
                    kernel(5), ospf(6), rip(7), static(8) }
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The type of the route which will be used to send or receive LDP packets."
    ::= { prvtMplsRouteProtocolEntry 2 }

prvtMplsRouteProtocolRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION 
        "This object is used to create an entry in the table."
    ::= { prvtMplsRouteProtocolEntry 3 }

prvtMplsRouteAddressTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF PrvtMplsRouteAddressEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This table contains the egress and ingress routes for LDP label
         packets."
    ::= { prvtMplsRouteObjs 2 }

prvtMplsRouteAddressEntry OBJECT-TYPE
    SYNTAX      PrvtMplsRouteAddressEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "An entry in prvtMplsRouteAddressTable."
    INDEX       { prvtMplsRouteProtocolDirection, 
                  prvtMplsRouteAddressIpAddrMask }
    ::= { prvtMplsRouteAddressTable 1 }

PrvtMplsRouteAddressEntry ::= SEQUENCE {
    prvtMplsRouteAddressIpAddrMask  PrvtMplsIpAddressMask,
    prvtMplsRouteAddressRowStatus   RowStatus
}

prvtMplsRouteAddressIpAddrMask OBJECT-TYPE
    SYNTAX      PrvtMplsIpAddressMask
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The IP prefix of the route that will be used to send or receive LDP packets."
    ::= { prvtMplsRouteAddressEntry 2 }

prvtMplsRouteAddressRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION 
        "This is object is used to create an entry in the table."
    ::= { prvtMplsRouteAddressEntry 4 }

END -- end of module PRVT-MPLS-IF-MIB.