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
|
PACKETLOGIC-NIC-MIB DEFINITIONS ::= BEGIN
IMPORTS
NOTIFICATION-TYPE,
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter64,
Unsigned32, TimeTicks FROM SNMPv2-SMI
packetlogic2 FROM PACKETLOGIC-MIB
hw FROM PACKETLOGIC-HW-MIB
DisplayString, DateAndTime FROM SNMPv2-TC
CounterBasedGauge64 FROM HCNUM-TC;
nic MODULE-IDENTITY
LAST-UPDATED "201909121500Z"
ORGANIZATION "Procera Networks, Inc."
CONTACT-INFO "support@proceranetworks.com"
DESCRIPTION "MIB for PacketLogic2 Network Interface Modules"
REVISION "201909121500Z"
DESCRIPTION " Latest version at the revision date for version GET VERSION HERE"
::={hw 2}
SlotEntry ::= SEQUENCE {
slotLabel DisplayString,
slotState DisplayString,
slotBypass DisplayString,
slotChannels DisplayString,
slotInterface DisplayString,
slotPartNo DisplayString,
slotPorts DisplayString,
slotSpeed DisplayString,
slotEntryIndex Integer32
}
slots OBJECT-TYPE
SYNTAX SEQUENCE OF SlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Conceptual Table"
::= {nic 1}
slotEntry OBJECT-TYPE
SYNTAX SlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Conceptual Table"
INDEX { slotEntryIndex }
::= {slots 1}
slotEntryIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique Row Index for Conceptual Table"
::={slotEntry 999}
ChannelEntry ::= SEQUENCE {
channelLocation DisplayString,
channelLabel DisplayString,
channelSlot DisplayString,
channelEntryIndex Integer32
}
channels OBJECT-TYPE
SYNTAX SEQUENCE OF ChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Conceptual Table"
::= {nic 2}
channelEntry OBJECT-TYPE
SYNTAX ChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Conceptual Table"
INDEX { channelEntryIndex }
::= {channels 1}
channelEntryIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique Row Index for Conceptual Table"
::={channelEntry 999}
slotLabel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Slot Label"
::={slotEntry 1}
slotState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Slot State"
::={slotEntry 2}
slotBypass OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Slot Bypass Support"
::={slotEntry 3}
slotChannels OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Slot Channels"
::={slotEntry 4}
slotInterface OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Slot Interface Type"
::={slotEntry 5}
slotPartNo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Slot Part Number"
::={slotEntry 6}
slotPorts OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Slot Ports"
::={slotEntry 7}
slotSpeed OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Slot Speed"
::={slotEntry 8}
channelLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Channel Location"
::={channelEntry 1}
channelLabel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Channel Label"
::={channelEntry 2}
channelSlot OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Slot Label"
::={channelEntry 3}
totalThroughput OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total potential throughput based on capacity of installed NICs (Gb/s)"
::={nic 3}
END
|