1PACKETLOGIC-NIC-MIB DEFINITIONS ::= BEGIN
2
3IMPORTS
4	NOTIFICATION-TYPE,
5	MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter64,
6	Unsigned32, TimeTicks FROM SNMPv2-SMI
7	packetlogic2 FROM PACKETLOGIC-MIB
8	hw FROM PACKETLOGIC-HW-MIB
9	DisplayString, DateAndTime FROM SNMPv2-TC
10	CounterBasedGauge64 FROM HCNUM-TC;
11
12nic MODULE-IDENTITY
13	LAST-UPDATED "201909121500Z"
14	ORGANIZATION "Procera Networks, Inc."
15	CONTACT-INFO "support@proceranetworks.com"
16	DESCRIPTION "MIB for PacketLogic2 Network Interface Modules"
17	REVISION "201909121500Z"
18	DESCRIPTION " Latest version at the revision date for version GET VERSION HERE"
19
20	::={hw 2}
21
22SlotEntry ::= SEQUENCE {
23	slotLabel DisplayString,
24	slotState DisplayString,
25	slotBypass DisplayString,
26	slotChannels DisplayString,
27	slotInterface DisplayString,
28	slotPartNo DisplayString,
29	slotPorts DisplayString,
30	slotSpeed DisplayString,
31	slotEntryIndex Integer32
32}
33
34slots	OBJECT-TYPE
35	SYNTAX SEQUENCE OF SlotEntry
36	MAX-ACCESS not-accessible
37	STATUS current
38	DESCRIPTION "Conceptual Table"
39	::= {nic 1}
40
41slotEntry	OBJECT-TYPE
42	SYNTAX SlotEntry
43	MAX-ACCESS not-accessible
44	STATUS current
45	DESCRIPTION "Conceptual Table"
46	INDEX { slotEntryIndex }
47	::= {slots 1}
48
49slotEntryIndex	OBJECT-TYPE
50	SYNTAX Integer32 (1..2147483647)
51	MAX-ACCESS not-accessible
52	STATUS current
53	DESCRIPTION "Unique Row Index for Conceptual Table"
54	::={slotEntry 999}
55
56
57
58
59
60
61
62
63
64
65ChannelEntry ::= SEQUENCE {
66	channelLocation DisplayString,
67	channelLabel DisplayString,
68	channelSlot DisplayString,
69	channelEntryIndex Integer32
70}
71
72channels	OBJECT-TYPE
73	SYNTAX SEQUENCE OF ChannelEntry
74	MAX-ACCESS not-accessible
75	STATUS current
76	DESCRIPTION "Conceptual Table"
77	::= {nic 2}
78
79channelEntry	OBJECT-TYPE
80	SYNTAX ChannelEntry
81	MAX-ACCESS not-accessible
82	STATUS current
83	DESCRIPTION "Conceptual Table"
84	INDEX { channelEntryIndex }
85	::= {channels 1}
86
87channelEntryIndex	OBJECT-TYPE
88	SYNTAX Integer32 (1..2147483647)
89	MAX-ACCESS not-accessible
90	STATUS current
91	DESCRIPTION "Unique Row Index for Conceptual Table"
92	::={channelEntry 999}
93
94
95
96
97
98
99slotLabel	OBJECT-TYPE
100	SYNTAX	 DisplayString
101	MAX-ACCESS read-only
102	STATUS current
103	DESCRIPTION "Slot Label"
104
105	::={slotEntry 1}
106
107slotState	OBJECT-TYPE
108	SYNTAX	 DisplayString
109	MAX-ACCESS read-only
110	STATUS current
111	DESCRIPTION "Slot State"
112
113	::={slotEntry 2}
114
115slotBypass	OBJECT-TYPE
116	SYNTAX	 DisplayString
117	MAX-ACCESS read-only
118	STATUS current
119	DESCRIPTION "Slot Bypass Support"
120
121	::={slotEntry 3}
122
123slotChannels	OBJECT-TYPE
124	SYNTAX	 DisplayString
125	MAX-ACCESS read-only
126	STATUS current
127	DESCRIPTION "Slot Channels"
128
129	::={slotEntry 4}
130
131slotInterface	OBJECT-TYPE
132	SYNTAX	 DisplayString
133	MAX-ACCESS read-only
134	STATUS current
135	DESCRIPTION "Slot Interface Type"
136
137	::={slotEntry 5}
138
139slotPartNo	OBJECT-TYPE
140	SYNTAX	 DisplayString
141	MAX-ACCESS read-only
142	STATUS current
143	DESCRIPTION "Slot Part Number"
144
145	::={slotEntry 6}
146
147slotPorts	OBJECT-TYPE
148	SYNTAX	 DisplayString
149	MAX-ACCESS read-only
150	STATUS current
151	DESCRIPTION "Slot Ports"
152
153	::={slotEntry 7}
154
155slotSpeed	OBJECT-TYPE
156	SYNTAX	 DisplayString
157	MAX-ACCESS read-only
158	STATUS current
159	DESCRIPTION "Slot Speed"
160
161	::={slotEntry 8}
162
163channelLocation	OBJECT-TYPE
164	SYNTAX	 DisplayString
165	MAX-ACCESS read-only
166	STATUS current
167	DESCRIPTION "Channel Location"
168
169	::={channelEntry 1}
170
171channelLabel	OBJECT-TYPE
172	SYNTAX	 DisplayString
173	MAX-ACCESS read-only
174	STATUS current
175	DESCRIPTION "Channel Label"
176
177	::={channelEntry 2}
178
179channelSlot	OBJECT-TYPE
180	SYNTAX	 DisplayString
181	MAX-ACCESS read-only
182	STATUS current
183	DESCRIPTION "Slot Label"
184
185	::={channelEntry 3}
186
187totalThroughput	OBJECT-TYPE
188	SYNTAX	 DisplayString
189	MAX-ACCESS read-only
190	STATUS current
191	DESCRIPTION "Total potential throughput based on capacity of installed NICs (Gb/s)"
192
193	::={nic 3}
194
195
196
197END
198