forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BASIS-SERIAL-MIB.my
193 lines (163 loc) · 5.39 KB
/
BASIS-SERIAL-MIB.my
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
-- *****************************************************************
-- BASIS-SERIAL-MIB: Serial Port MIB MGX8250 and MGX8220 products.
--
-- May 2003, Subra Hegde
--
-- Copyright (c) 2003 by cisco Systems, Inc.
-- All rights reserved.
-- ****************************************************************
BASIS-SERIAL-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Integer32 FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
basisLines FROM BASIS-MIB
ciscoWan FROM CISCOWAN-SMI;
basisSerialMIB MODULE-IDENTITY
LAST-UPDATED "200305030000Z"
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
"The MIB module to configure serial ports
in Processor Module and different Service
Modules(cards) in MGX8850,MGX8250 and MGX8220
ATM Edge switches."
REVISION "200305030000Z"
DESCRIPTION
"Initial version of the MIB.
The content of this MIB was originally available
in CISCO-WAN-AXIPOP-MIB defined using SMIv1.
The applicable objects from CISCO-WAN-AXIPOP-MIB
are defined using SMIv2 in this MIB. Also the
descriptions of some of the objects have been
modified."
::= { ciscoWan 69 }
serialInterface OBJECT IDENTIFIER ::= {basisLines 1}
-- ***************************************************************
--
-- serial interface table
--
-- ***************************************************************
serialPortNumOfValidEntries OBJECT-TYPE
SYNTAX Integer32(1..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains number of serial ports.
This identifies the number of entries in
serialInterfacetable."
::= { serialInterface 2 }
serialInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF SerialInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents Physical serial interfaces in
the module."
::= { serialInterface 1 }
serialInterfaceEntry OBJECT-TYPE
SYNTAX SerialInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for each serial interface.
Each entry contains information on
port type, port speed."
INDEX { serialPortNum }
::= { serialInterfaceTable 1}
SerialInterfaceEntry ::=
SEQUENCE {
serialPortNum Integer32,
serialPortType INTEGER,
serialPortEnable INTEGER,
serialPortbps INTEGER
}
serialPortNum OBJECT-TYPE
SYNTAX Integer32(1..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the serial port number.
The value 1 is used for Console Port.
The Console Port is also known as control port(CP).
The value 2 is used for Maintenance Port
and this can be used as SLIP
(Serial Line Internet Protocol) interface.
The Maintenance Port is also known as
Modem Port(MP)."
::= { serialInterfaceEntry 1 }
serialPortType OBJECT-TYPE
SYNTAX INTEGER {
main (1),
debug (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the type of port.
main(1) : This is applicable for Maintenance Port
debug(2) : This is applicable for Console Port."
::= { serialInterfaceEntry 2 }
serialPortEnable OBJECT-TYPE
SYNTAX INTEGER {
disable (1),
enable (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used for enabling/disabling
serial port."
::= { serialInterfaceEntry 3 }
serialPortbps OBJECT-TYPE
SYNTAX INTEGER {
bps9600 (1),
bps2400 (2),
bps19200 (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the baud rate of the ports."
DEFVAL { bps9600 }
::= { serialInterfaceEntry 4 }
-- conformance information
basisSerialMIBConformance OBJECT IDENTIFIER ::= { basisSerialMIB 2 }
basisSerialMIBGroups OBJECT IDENTIFIER ::=
{ basisSerialMIBConformance 1 }
basisSerialMIBCompliances OBJECT IDENTIFIER ::=
{ basisSerialMIBConformance 2 }
-- compliance statements
basisSerialCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for objects related
to Serial Ports."
MODULE -- this module
MANDATORY-GROUPS {
basisSerialConfGroup
}
::= { basisSerialMIBCompliances 1 }
basisSerialConfGroup OBJECT-GROUP
OBJECTS {
serialPortNumOfValidEntries,
serialPortNum,
serialPortType,
serialPortEnable,
serialPortbps
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent
serial ports."
::= { basisSerialMIBGroups 1 }
END