-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCISCO-TCPOFFLOAD-MIB
298 lines (257 loc) · 8.94 KB
/
CISCO-TCPOFFLOAD-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
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
284
285
286
287
288
289
290
291
292
293
294
295
296
-- *****************************************************************
-- CISCO-TCPOFFLOAD-MIB.my: Cisco CIP TCP OFFLOAD MIB file
--
-- April 1994, Mike Otto
--
-- Copyright (c) 1994-1996, 1998 by cisco Systems, Inc.
-- All rights reserved.
--
-- *****************************************************************
--
CISCO-TCPOFFLOAD-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
IpAddress
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
DisplayString, RowStatus, TruthValue
FROM SNMPv2-TC
ciscoMgmt
FROM CISCO-SMI
cipCardEntryIndex, cipCardDtrBrdIndex, cipCardSubChannelIndex
FROM CISCO-CHANNEL-MIB;
ciscoTcpOffloadMIB MODULE-IDENTITY
LAST-UPDATED "9503300000Z"
ORGANIZATION "cisco IBM engineering Working Group"
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
"This is the MIB module for objects used to manage
the cisco tcp offload feature.
The IBM mainframe (host) supports TCP/IP. As a way to
save cycles on the host, the TCP/IP stack can be run
on the 3172. This offloads the host from the protocol
processing and is known as TCP-OFFLOAD. This mib
identifies the manageable objects for the TCP-OFFLOAD
feature in the Cisco router."
REVISION "9801060000Z"
DESCRIPTION
"With the addition of Cisco's new Channel Port
Adapter cards, all the references to CIP in the
MIB description and object descriptions are changed
to CMCC (Cisco Mainframe Channel Connection). The
object names in the form of cip... or cipCard...
will remain the same, but will be valid objects
for the Channel Port Adapter cards."
REVISION "9504270000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 31 }
tcpOffloadObjects OBJECT IDENTIFIER ::= { ciscoTcpOffloadMIB 1 }
cipCardOffloadConfig OBJECT IDENTIFIER ::= {tcpOffloadObjects 1 }
cipCardOffloadConfigTable
OBJECT-TYPE
SYNTAX SEQUENCE OF CipCardOffloadConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains configuration information for
the TCP offload feature on the CMCC card.
Changing these parameters will take effect immediately.
The management station can create an entry in this table
by setting the appropriate value in cipCardOffloadConfigRowStatus.
All the objects in this table must be supplied for a successful
create/set.
"
::= {cipCardOffloadConfig 1 }
cipCardOffloadConfigEntry
OBJECT-TYPE
SYNTAX CipCardOffloadConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of OFFLOAD configuration values."
INDEX { cipCardEntryIndex,
cipCardDtrBrdIndex,
cipCardSubChannelIndex
}
::= { cipCardOffloadConfigTable 1 }
CipCardOffloadConfigEntry ::= SEQUENCE
{
cipCardOffloadConfigPath OCTET STRING (SIZE(2)),
cipCardOffloadConfigDevice OCTET STRING (SIZE(2)),
cipCardOffloadConfigIpAddr IpAddress,
cipCardOffloadConfigHostName DisplayString (SIZE (1..10)),
cipCardOffloadConfigRouterName DisplayString (SIZE (1..10)),
cipCardOffloadConfigLinkHostAppl DisplayString (SIZE (1..10)),
cipCardOffloadConfigLinkRouterAppl DisplayString (SIZE (1..10)),
cipCardOffloadConfigAPIHostAppl DisplayString (SIZE (1..10)),
cipCardOffloadConfigAPIRouterAppl DisplayString (SIZE (1..10)),
cipCardOffloadConfigBroadcastEnable TruthValue,
cipCardOffloadConfigRowStatus RowStatus
}
cipCardOffloadConfigPath
OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Hex path identifier for the escon director switch port
containing the fiber from the channel on the host to
which this CMCC CLAW task connects.
This is a concatenation of the switch port number, the
channel logical address (used by the host to associate
an logical partition (LPAR) with the control unit), and
the control unit logical address (address of a logical
control unit used by the host to associate a group of
physical devices).
For a directly connected channel, the switch port number
is usually 01."
::= {cipCardOffloadConfigEntry 1 }
cipCardOffloadConfigDevice
OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Two digit hex device address for the device the SNA host will
use to communicate with the offload task on the CMCC. The address
must be even."
::= {cipCardOffloadConfigEntry 2 }
cipCardOffloadConfigIpAddr
OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IP address of the host application for the offload task as
specified in the HOME statement of the PROFILE TCPIP."
::= {cipCardOffloadConfigEntry 3 }
cipCardOffloadConfigHostName
OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..10))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Host name parameter as specified in the DEVICE statement
of the PROFILE TCPIP."
::= {cipCardOffloadConfigEntry 4 }
cipCardOffloadConfigRouterName
OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..10))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Workstation name parameter as specified in the DEVICE
statement of the mainframe PROFILE TCPIP."
::= {cipCardOffloadConfigEntry 5 }
cipCardOffloadConfigLinkHostAppl
OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..10))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the application providing the IP link services,
as specified in the mainframe configuration."
::= {cipCardOffloadConfigEntry 6 }
cipCardOffloadConfigLinkRouterAppl
OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..10))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the router application providing the IP link
services, as specified in the mainframe configuration."
::= {cipCardOffloadConfigEntry 7 }
cipCardOffloadConfigAPIHostAppl
OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..10))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the mainframe application providing the API
services, as specified in the mainframe configuration."
::= {cipCardOffloadConfigEntry 8 }
cipCardOffloadConfigAPIRouterAppl
OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..10))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the router application providing the API services,
as specified in the mainframe configuration."
::= {cipCardOffloadConfigEntry 9 }
cipCardOffloadConfigBroadcastEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Control processing of broadcast frames for the
path/device this instance of OFFLOAD is configured
on. Enable turns broadcast processing on."
::= {cipCardOffloadConfigEntry 10 }
cipCardOffloadConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used by a management station to
create or delete the row entry in
cipCardOffloadConfigTable following the RowStatus
textual convention."
::= {cipCardOffloadConfigEntry 11 }
-- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
--
-- Conformance Information
--
ciscoTcpOffloadMibConformance OBJECT IDENTIFIER ::= { ciscoTcpOffloadMIB 2 }
ciscoTcpOffloadMibCompliances OBJECT IDENTIFIER ::=
{ ciscoTcpOffloadMibConformance 1 }
ciscoTcpOffloadMibGroups OBJECT IDENTIFIER ::=
{ ciscoTcpOffloadMibConformance 2 }
--
-- Compliance Statements
--
ciscoTcpOffloadMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the TcpIP Offload feature."
MODULE
MANDATORY-GROUPS {
ciscoTcpOffloadGroup
}
::= { ciscoTcpOffloadMibCompliances 1 }
ciscoTcpOffloadGroup OBJECT-GROUP
OBJECTS {
-- Table Header
-- cipCardOffloadConfigTable
-- cipCardOffloadConfigEntry
-- Table Indicies
-- cipCardEntryIndex
-- cipCardDtrBrdIndex
-- cipCardSubChannelIndex
--
cipCardOffloadConfigPath,
cipCardOffloadConfigDevice,
cipCardOffloadConfigIpAddr,
cipCardOffloadConfigHostName,
cipCardOffloadConfigRouterName,
cipCardOffloadConfigLinkHostAppl,
cipCardOffloadConfigLinkRouterAppl,
cipCardOffloadConfigAPIHostAppl,
cipCardOffloadConfigAPIRouterAppl,
cipCardOffloadConfigBroadcastEnable,
cipCardOffloadConfigRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing configuration capability."
::= { ciscoTcpOffloadMibGroups 1}
END