forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CISCO-ATM-SERVICE-REGISTRY-MIB.mib
212 lines (179 loc) · 7.3 KB
/
CISCO-ATM-SERVICE-REGISTRY-MIB.mib
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
--------------------------------------------------------------------
-- The ATM Service Registry MIB for Network Management.
--
-- March 1996, Kartik Chandrasekhar
--
-- Copyright (c) 1996-1997 by cisco Systems, Inc.
-- All rights reserved.
--------------------------------------------------------------------
CISCO-ATM-SERVICE-REGISTRY-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32 FROM SNMPv2-SMI
TEXTUAL-CONVENTION, RowStatus FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
ciscoMgmt FROM CISCO-SMI;
ciscoAtmServiceRegistryMIB MODULE-IDENTITY
LAST-UPDATED "9602210000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W. Tasman Drive
San Jose, CA 95134-1706
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"A MIB module to allow an NMS to monitor and
configure the information which an ATM switch
makes available via the ILMI's Service Registry
Table."
REVISION "9602040000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 50 }
ciscoAtmServiceRegistryMIBObjects
OBJECT IDENTIFIER ::= { ciscoAtmServiceRegistryMIB 1 }
-- AtmAddr defined here for completeness. Over time it should be
-- imported from the ATMTC-MIB under development by the IETF
AtmAddr ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The ATM address used by the network entity. The
address types are: no address (0 octets), E.164 (8
octets), network prefix (13 octets), and NSAP (20
octets). Note: The E.164 address is encoded in
BCD format."
SYNTAX OCTET STRING (SIZE(0|8|13|20))
InterfaceIndexOrZero ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Either the value 0, or the ifIndex value of an
ATM Interface."
SYNTAX Integer32 (0..2147483647)
-- The Service Registry Table
--
-- The Service Registry Table is implemented by ATM switches
asrSrvcRegTable OBJECT-TYPE
SYNTAX SEQUENCE OF AsrSrvcRegEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table implemented by an ATM switch to allow
monitoring and control of the ATM addresses of
registered services which it makes avaiable to ATM
end-systems via the ILMI across its UNIs."
::= { ciscoAtmServiceRegistryMIBObjects 1 }
asrSrvcRegEntry OBJECT-TYPE
SYNTAX AsrSrvcRegEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a single service provider that is
to be made available to the user-side of one or more
ATM UNIs. An entry, for which asrSrvcRegPort has a
non-zero value, is a specific assignment to that UNI;
an entry for which asrSrvcRegPort is zero applies to
all UNIs for which this table contains no specific
assignments."
INDEX { asrSrvcRegPort, asrSrvcRegServiceID,
asrSrvcRegAddressIndex }
::= { asrSrvcRegTable 1 }
AsrSrvcRegEntry ::=
SEQUENCE {
asrSrvcRegPort InterfaceIndexOrZero,
asrSrvcRegServiceID OBJECT IDENTIFIER,
asrSrvcRegATMAddress AtmAddr,
asrSrvcRegAddressIndex Integer32,
asrSrvcRegParm1 OCTET STRING,
asrSrvcRegRowStatus RowStatus
}
asrSrvcRegPort OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Either the value 0, or the ifIndex value of an
the ATM Interface. A row for which this object has a
non-zero value is a specific assignment to that UNI;
a row for which this object is zero applies to
all UNIs for which this table contains no specific
assignments.
Some switches may only support this object with the
value of zero."
::= { asrSrvcRegEntry 1 }
asrSrvcRegServiceID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The service identifier which uniquely identifies
the type of service at the address given by the
corresponding value of asrSrvcRegATMAddress.
Specific values for this identifier are defined in
the ILMI specification (e.g., asrSrvcRegLecs) or
elsewhere."
::= { asrSrvcRegEntry 2 }
asrSrvcRegATMAddress OBJECT-TYPE
SYNTAX AtmAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An ATM address to which the ATM end-system on this
UNI can attempt to establish a connection for the
service."
::= { asrSrvcRegEntry 3 }
asrSrvcRegAddressIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer to differentiate multiple rows
containing different ATM addresses for the same service
on the same UNI."
::= { asrSrvcRegEntry 4 }
asrSrvcRegParm1 OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An octet string used according to the value of
asrSrvcRegServiceID."
::= { asrSrvcRegEntry 5 }
asrSrvcRegRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row. No object in the row can
be modified while the value of this object is
'active'."
::= { asrSrvcRegEntry 6 }
-- conformance information
asrSrvcRegMIBConformance OBJECT IDENTIFIER ::= { ciscoAtmServiceRegistryMIB 3 }
asrSrvcRegMIBCompliances OBJECT IDENTIFIER ::= { asrSrvcRegMIBConformance 1 }
asrSrvcRegMIBGroups OBJECT IDENTIFIER ::= { asrSrvcRegMIBConformance 2 }
-- compliance statement
asrSrvcRegMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for ATM switches which
implement the Cisco Service Registry MIB"
MODULE -- this module
MANDATORY-GROUPS { asrSrvcRegMIBGroup }
::= { asrSrvcRegMIBCompliances 1 }
-- units of conformance
asrSrvcRegMIBGroup OBJECT-GROUP
OBJECTS {
asrSrvcRegATMAddress,
asrSrvcRegParm1,
asrSrvcRegRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing monitoring and
control of ATM addresses of services which an ATM
switch is to make available via the ILMI."
::= { asrSrvcRegMIBGroups 1 }
END