forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCISCO-ATM-ADDR-MIB.mib
157 lines (119 loc) · 4.52 KB
/
CISCO-ATM-ADDR-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
--------------------------------------------------------------------
-- Cisco version of the supplemental AtoM MIB for switch reg. Addresses
--
-- January 1996, Kartik Chandrasekhar
--
-- Copyright (c) 1996 by cisco Systems, Inc.
-- All rights reserved.
--------------------------------------------------------------------
--
CISCO-ATM-ADDR-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE FROM SNMPv2-SMI
TEXTUAL-CONVENTION,
RowStatus FROM SNMPv2-TC
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
ifIndex FROM IF-MIB
ciscoExperiment FROM CISCO-SMI;
ciscoAtmAddrMIB MODULE-IDENTITY
LAST-UPDATED "9605060000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"ATM address MIB"
REVISION "9605060000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoExperiment 12 } -- assigned by [email protected]
-- 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))
ciscoAtmAddrMIBObjects OBJECT IDENTIFIER ::= { ciscoAtmAddrMIB 1 }
-- ATM Interface Administrative Address Table
-- This table contains a list of the valid calling party
-- addresses for a UNI in the case of both PVCs and SVCs.
-- For PVCs, if addresses are not used then an entry in
-- this table is not necessary.
ciscoAtmIfAdminAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoAtmIfAdminAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains an address list on a per interface
basis. This table only applies to switches or networks
and only for interfaces that have more than one address
assigned."
::= { ciscoAtmAddrMIBObjects 1 }
ciscoAtmIfAdminAddrEntry OBJECT-TYPE
SYNTAX CiscoAtmIfAdminAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the CiscoAtmIfAdminAddrTable."
INDEX { ifIndex, ciscoAtmIfAdminAddrAddress }
::= { ciscoAtmIfAdminAddrTable 1 }
CiscoAtmIfAdminAddrEntry ::=
SEQUENCE {
ciscoAtmIfAdminAddrAddress AtmAddr,
ciscoAtmIfAdminAddrRowStatus RowStatus
}
ciscoAtmIfAdminAddrAddress OBJECT-TYPE
SYNTAX AtmAddr
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A valid address for a given switch or network
interface."
::= { ciscoAtmIfAdminAddrEntry 1}
ciscoAtmIfAdminAddrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the
atmIfAdminAddrTable."
::= { ciscoAtmIfAdminAddrEntry 2}
-- Conformance Information
ciscoAtmIfAdminAddrMIBConformance
OBJECT IDENTIFIER ::= { ciscoAtmAddrMIB 3 }
ciscoAtmIfAdminAddrMIBCompliances
OBJECT IDENTIFIER ::= { ciscoAtmIfAdminAddrMIBConformance 1 }
ciscoAtmIfAdminAddrMIBGroups
OBJECT IDENTIFIER ::= { ciscoAtmIfAdminAddrMIBConformance 2 }
-- Compliance Statements
ciscoAtmIfAdminAddrMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the Cisco ATM address
group."
MODULE -- this module
MANDATORY-GROUPS { ciscoAtmIfAdminAddrMIBGroup }
::= { ciscoAtmIfAdminAddrMIBCompliances 1 }
-- Units of Conformance
ciscoAtmIfAdminAddrMIBGroup OBJECT-GROUP
OBJECTS {
ciscoAtmIfAdminAddrRowStatus
}
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the
atmIfAdminAddrTable."
::= { ciscoAtmIfAdminAddrMIBGroups 1 }
END