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
|
CISCOSB-QOS-APPS-MIB DEFINITIONS ::= BEGIN
-- Title: CISCOSB QOS Applications Configuration
-- Version: 7.60.00.00
-- Date: 15-December-2015
IMPORTS
TruthValue, TEXTUAL-CONVENTION,
DisplayString, RowStatus FROM SNMPv2-TC
InetAddressType,InetAddress FROM INET-ADDRESS-MIB
switch001, rlQosApps FROM CISCOSB-MIB
MODULE-IDENTITY, OBJECT-TYPE, Unsigned32 FROM SNMPv2-SMI;
rlQosApps MODULE-IDENTITY
LAST-UPDATED "201606020000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"
DESCRIPTION
"The private MIB module definition for QoS Applications Configuration in CISCOSB devices."
REVISION "201606020000Z"
DESCRIPTION
"Added this MODULE-IDENTITY clause."
::= { switch001 232 }
rlIscsiQos OBJECT IDENTIFIER ::= { rlQosApps 1 }
-------------------------------------------------------------------------------
-- rlIscsiQosEnable
rlIscsiQosEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable iSCSI Quality Of Service in the switch."
::= { rlIscsiQos 1 }
-------------------------------------------------------------------------------
-- rlIscsiQosDefaultFlowEnable
-- rlIscsiQosDefaultFlowEnable OBJECT-TYPE
-- SYNTAX TruthValue
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Enable/Disable Two iSCSI IPv4 flows with well-known
-- TCP ports 3260 and 860."
-- DEFVAL { true }
-- ::= { rlIscsiQos 2 }
-------------------------------------------------------------------------------
-- rlIscsiQosFlowTable
rlIscsiQosFlowTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIscsiQosFlowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table for configuration of iSCSI QOS."
::= { rlIscsiQos 2 }
rlIscsiQosFlowEntry OBJECT-TYPE
SYNTAX RlIscsiQosFlowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the rlIscsiQosFlowTable."
INDEX { rlIscsiQosFlowDestTcpPort,
rlIscsiQosFlowType,
rlIscsiQosFlowDestAddressType,
rlIscsiQosFlowDestAddress}
::= { rlIscsiQosFlowTable 1 }
RlIscsiQosFlowEntry ::= SEQUENCE {
rlIscsiQosFlowDestTcpPort INTEGER,
rlIscsiQosFlowType INTEGER,
rlIscsiQosFlowDestAddressType InetAddressType,
rlIscsiQosFlowDestAddress InetAddress,
rlIscsiQosFlowStatus RowStatus
}
rlIscsiQosFlowDestTcpPort OBJECT-TYPE
SYNTAX INTEGER(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The TCP port on which iSCSI targets listen to requests."
::= { rlIscsiQosFlowEntry 1 }
rlIscsiQosFlowType OBJECT-TYPE
SYNTAX INTEGER {
ipv4(1),
ipv6(2),
both(3)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of flow entry:
ipv4 - ipv4 flows only.
ipv6 - ipv6 flows only.
both - ipv4 and ipv6 flows."
DEFVAL { ipv4 }
::= { rlIscsiQosFlowEntry 2 }
rlIscsiQosFlowDestAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address type of rlIscsiQosDestAddress.
Only IPv4 is accepted in current implementation."
::= { rlIscsiQosFlowEntry 3 }
rlIscsiQosFlowDestAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP address on which iSCSI targets listen to requests."
::= { rlIscsiQosFlowEntry 4 }
rlIscsiQosFlowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry."
::= { rlIscsiQosFlowEntry 5 }
-------------------------------------------------------------------------------
-- rlIscsiQosProfileTable
rlIscsiQosProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIscsiQosProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table for configuration of iSCSI QOS Profile."
::= { rlIscsiQos 3 }
rlIscsiQosProfileEntry OBJECT-TYPE
SYNTAX RlIscsiQosProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the rlIscsiQosProfileTable."
INDEX { rlIscsiQosProfileIndex }
::= { rlIscsiQosProfileTable 1 }
RlIscsiQosProfileEntry ::= SEQUENCE {
rlIscsiQosProfileIndex INTEGER,
rlIscsiQosProfileVpt INTEGER,
rlIscsiQosProfileDscp INTEGER,
rlIscsiQosProfileQueue INTEGER,
rlIscsiQosProfileStatus RowStatus
}
rlIscsiQosProfileIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of a table entry."
::= { rlIscsiQosProfileEntry 1 }
rlIscsiQosProfileVpt OBJECT-TYPE
SYNTAX INTEGER(0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VLAN Priority Tag (VPT) that iSCSI tagged frames are
assigned with (Range: 0-7)."
::= { rlIscsiQosProfileEntry 2 }
rlIscsiQosProfileDscp OBJECT-TYPE
SYNTAX INTEGER(0..63)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Differentiated Services Code Point (DSCP) that iSCSI frames are
assigned with (Range: 0–63)."
::= { rlIscsiQosProfileEntry 3 }
rlIscsiQosProfileQueue OBJECT-TYPE
SYNTAX INTEGER(1..8)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The outgoing queue that iSCSI frames are sent to (Range: 1–8)."
::= { rlIscsiQosProfileEntry 4 }
rlIscsiQosProfileStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry."
::= { rlIscsiQosProfileEntry 5 }
END
|