-
Notifications
You must be signed in to change notification settings - Fork 57
/
CISCO-ATM-SWITCH-ADDR-MIB.mib
158 lines (118 loc) · 4.47 KB
/
CISCO-ATM-SWITCH-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
--------------------------------------------------------------------
-- CISCO ATM SWITCH ADDRESS MIB
--
-- Jan 1996, Yunsen Wang
--
-- Copyright (c) 1996 by cisco Systems, Inc.
-- All rights reserved.
--------------------------------------------------------------------
--
CISCO-ATM-SWITCH-ADDR-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;
ciscoAtmSwAddrMIB MODULE-IDENTITY
LAST-UPDATED "9601100000Z"
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: cs-snmp@cisco.com"
DESCRIPTION
"ATM Switch address MIB"
REVISION "9601100000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 51 }
ciscoAtmSwAddrMIBObjects OBJECT IDENTIFIER ::= { ciscoAtmSwAddrMIB 1 }
AtmAddr ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The ATM address used by the network entity. The
address types are: network prefix (13 octets), and NSAP (20
octets)."
SYNTAX OCTET STRING (SIZE(13|20))
ciscoAtmSwAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoAtmSwAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains an address list on a per switch
basis."
::= { ciscoAtmSwAddrMIBObjects 1 }
ciscoAtmSwAddrEntry OBJECT-TYPE
SYNTAX CiscoAtmSwAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the ciscoAtmSwAddrTable."
INDEX { ciscoAtmSwAddrIndex }
::= { ciscoAtmSwAddrTable 1 }
CiscoAtmSwAddrEntry ::= SEQUENCE {
ciscoAtmSwAddrIndex Integer32,
ciscoAtmSwAddrAddress AtmAddr,
ciscoAtmSwAddrRowStatus RowStatus
}
ciscoAtmSwAddrIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A sequence number when address gets created.
1 is the primary address. This is dense table and
this index will be re-sequenced when a entry get
deleted and it can only create new entry when append
in the end of table."
::= { ciscoAtmSwAddrEntry 1 }
ciscoAtmSwAddrAddress OBJECT-TYPE
SYNTAX AtmAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A valid address for a given switch."
::= { ciscoAtmSwAddrEntry 2 }
ciscoAtmSwAddrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the
ciscoAtmSwAddrTable."
::= { ciscoAtmSwAddrEntry 3 }
-- ************************************************
-- Conformance Information
ciscoAtmSwAddrMIBConformance
OBJECT IDENTIFIER ::= { ciscoAtmSwAddrMIB 3 }
ciscoAtmSwAddrMIBCompliances
OBJECT IDENTIFIER ::= { ciscoAtmSwAddrMIBConformance 1 }
ciscoAtmSwAddrMIBGroups
OBJECT IDENTIFIER ::= { ciscoAtmSwAddrMIBConformance 2 }
-- Compliance Statements
ciscoAtmSwAddrMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the Cisco ATM switch address
group."
MODULE -- this module
::= { ciscoAtmSwAddrMIBCompliances 1 }
-- **********************************************
-- Units of Conformance
ciscoAtmSwAddrMIBGroup OBJECT-GROUP
OBJECTS {
ciscoAtmSwAddrAddress,
ciscoAtmSwAddrRowStatus
}
STATUS current
DESCRIPTION
""
::= { ciscoAtmSwAddrMIBGroups 1 }
END