-
Notifications
You must be signed in to change notification settings - Fork 0
/
INTELLAN.mib
1529 lines (1342 loc) · 41.7 KB
/
INTELLAN.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- /*****************************************************************************
-- ** INTEL CONFIDENTIAL **
-- ** **
-- ** Copyright 1998 2011 Intel Corporation All Rights Reserved. **
-- ** **
-- ** The source code contained or described herein and all documents related **
-- ** to the source code ("Material") are owned by Intel Corporation or its **
-- ** suppliers or licensors. Title to the Material remains with Intel **
-- ** Corporation or its suppliers and licensors. The Material contains trade **
-- ** secrets and proprietary and confidential information of Intel or its **
-- ** suppliers and licensors. The Material is protected by worldwide **
-- ** copyright and trade secret laws and treaty provisions. No part of the **
-- ** Material may be used, copied, reproduced, modified, published, **
-- ** uploaded, posted, transmitted, distributed, or disclosed in any way **
-- ** without Intel’s prior express written permission. **
-- ** **
-- ** No license under any patent, copyright, trade secret or other **
-- ** intellectual property right is granted to or conferred upon you by **
-- ** disclosure or delivery of the Materials, either expressly, by **
-- ** implication, inducement, estoppel or otherwise. Any license under such **
-- ** intellectual property rights must be express and approved by Intel in **
-- ** writing. **
-- *****************************************************************************/
INTEL-LAN-ADAPTERS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,OBJECT-TYPE,
NOTIFICATION-TYPE,
Counter32,
Integer32,
Gauge32,
enterprises
FROM SNMPv2-SMI
TEXTUAL-CONVENTION,
PhysAddress,
DisplayString
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
;
intellan MODULE-IDENTITY
LAST-UPDATED "201210310000Z" -- Oct, 31, 2012
ORGANIZATION "Intel Corp"
CONTACT-INFO
"Intel Corp
http://www.intel.com/"
DESCRIPTION
"The MIB module for Intel LAN SNMP agent."
REVISION "201210310000Z" -- Oct 31, 2012
DESCRIPTION
"Version 1.4.10
Removed the extra 1 after enterprises ID"
::= { enterprises 3183 }
--iso OBJECT IDENTIFIER ::= { 1 }
--org OBJECT IDENTIFIER ::= { iso 3 }
--dod OBJECT IDENTIFIER ::= { org 6 }
--internet OBJECT IDENTIFIER ::= { dod 1 }
--directory OBJECT IDENTIFIER ::= { internet 1 }
--mgmt OBJECT IDENTIFIER ::= { internet 2 }
--experimental OBJECT IDENTIFIER ::= { internet 3 }
--private OBJECT IDENTIFIER ::= { internet 4 }
--enterprises OBJECT IDENTIFIER ::= { private 1 }
intel OBJECT IDENTIFIER ::= { enterprises 343 }
products OBJECT IDENTIFIER ::= { intel 2 }
nic-products OBJECT IDENTIFIER ::= { products 7 }
intel-lan-adapters OBJECT IDENTIFIER ::= { nic-products 2 }
component-description OBJECT IDENTIFIER ::= { intel-lan-adapters 1 }
InterfaceIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each interface or
interface sub-layer in the managed system. It is
recommended that values are assigned contiguously starting
from 1. The value for each interface sub-layer must remain
constant at least from one re-initialization of the entity's
network management system to the next re-initialization."
SYNTAX Integer32 (1..2147483647)
company OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Company that provided this MIB - Intel(R) Corporation."
::= { component-description 1 }
description OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description of this component -
Intel(R) Network Adapter(s), Advanced Management."
::= { component-description 2 }
operatingSystem OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operating System of the server on which the SNMP agent is executed."
::= { component-description 3 }
mibVersion1-4-3 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Version of this MIB - the empty string is always returned."
::= { component-description 4 }
mibVersionSupported OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Version of the MIB supported by the agent.
1.x.y indicates that every MIB version of that template is supported by the agent."
::= { component-description 5 }
agentExtensionVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Version of the SNMP extension agent."
::= { component-description 6 }
status OBJECT-TYPE
SYNTAX INTEGER {
baseDriverNotLoadedAnsNotLoaded(0),
baseDriverLoadedAnsNotLoaded(1),
baseDriverNotLoadedAnsLoaded(2),
baseDriverLoadedAnsLoaded(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates status and functionality of the adapter(s) -
whether the base driver and ANS are loaded."
::= { component-description 7 }
adaptersTables OBJECT IDENTIFIER ::= { intel-lan-adapters 2 }
-- ******************************
-- Generic Adapter Attr Table
-- ******************************
genericAdaptersAttrTables OBJECT IDENTIFIER ::= { adaptersTables 1 }
genericAdaptersAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF GenericAdapterAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Attributes common to all kinds of adapters."
::= { genericAdaptersAttrTables 1 }
genericAdapterAttrEntry OBJECT-TYPE
SYNTAX GenericAdapterAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Attributes common to all kinds of adapters.
There is one 'entry' for each physical or virtual adapter."
INDEX { adapterIndex }
::= { genericAdaptersAttrTable 1 }
GenericAdapterAttrEntry ::= SEQUENCE {
adapterIndex InterfaceIndex,
adapterName DisplayString,
adapterType INTEGER,
adapterDriverLoadStatus INTEGER
}
adapterIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value, greater than or equal to zero, for each interface."
::= { genericAdapterAttrEntry 1 }
adapterName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the adapter interface.
There is a unique name for each instance."
::= { genericAdapterAttrEntry 2 }
adapterType OBJECT-TYPE
SYNTAX INTEGER {
standAlone(0),
teamMember(1),
virtual(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of adapter (member, stand-alone, or virtual)."
::= { genericAdapterAttrEntry 3 }
adapterDriverLoadStatus OBJECT-TYPE
SYNTAX INTEGER {
loaded(0),
notLoaded(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Load status of the driver:
-'loaded' if the driver is loaded on the NIC; 'notLoaded' otherwise.
A status of 'notLoaded' means that the NIC is missing (via 'hotRemove')
or the driver is not fully loaded for some reason."
::= { genericAdapterAttrEntry 4 }
genericAdaptersDriversAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF GenericAdapterDriverAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Attributes common to all kinds of adapter drivers."
::= { genericAdaptersAttrTables 2 }
genericAdapterDriverAttrEntry OBJECT-TYPE
SYNTAX GenericAdapterDriverAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Attributes common to all kinds of adapter drivers.
There is one 'entry' for each adapter driver"
INDEX { adapterIndex }
::= { genericAdaptersDriversAttrTable 1 }
GenericAdapterDriverAttrEntry ::= SEQUENCE {
adapterDriverName DisplayString,
adapterDriverInfo DisplayString,
adapterDriverVersion DisplayString,
adapterDriverPath DisplayString,
adapterDriverDate DisplayString,
adapterDriverSize DisplayString,
adapterIpAddress DisplayString
}
adapterDriverName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the adapter driver."
::= { genericAdapterDriverAttrEntry 1 }
adapterDriverInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Additional information about the adapter. Includes name of the NIC."
::= { genericAdapterDriverAttrEntry 2 }
adapterDriverVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Adapter driver version number."
::= { genericAdapterDriverAttrEntry 3 }
adapterDriverPath OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Adapter driver path name."
::= { genericAdapterDriverAttrEntry 4 }
adapterDriverDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Adapter driver creation date (in mm/dd/yy format)."
::= { genericAdapterDriverAttrEntry 5 }
adapterDriverSize OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Adapter driver file size."
::= { genericAdapterDriverAttrEntry 6 }
-- *****************************************************************
-- Generic Adapter IP address
-- *****************************************************************
adapterIpAddress OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Adapter IP address"
::= { genericAdapterDriverAttrEntry 7 }
genericAdaptersTrafficStatsAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF GenericAdapterTrafficStatsAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Traffic stats common to all kinds of adapters."
::= { genericAdaptersAttrTables 3 }
genericAdapterTrafficStatsAttrEntry OBJECT-TYPE
SYNTAX GenericAdapterTrafficStatsAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Traffic stats common to all kinds of adapters.
There is one 'entry' for each adapter instance."
INDEX { adapterIndex }
::= { genericAdaptersTrafficStatsAttrTable 1 }
GenericAdapterTrafficStatsAttrEntry ::= SEQUENCE {
adapterRxPackets Counter32,
adapterTxPackets Counter32,
adapterRxBytes Counter32,
adapterTxBytes Counter32,
adapterRxErrors Counter32,
adapterTxErrors Counter32,
adapterRxDropped Counter32,
adapterTxDropped Counter32,
adapterRxMulticast Counter32,
adapterCollisions Counter32
}
adapterRxPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets received."
::= { genericAdapterTrafficStatsAttrEntry 1 }
adapterTxPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets transmitted."
::= { genericAdapterTrafficStatsAttrEntry 2 }
adapterRxBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of bytes received."
::= { genericAdapterTrafficStatsAttrEntry 3 }
adapterTxBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of bytes transmitted."
::= { genericAdapterTrafficStatsAttrEntry 4 }
adapterRxErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets received with errors
(packets that failed to reach the protocol)."
::= { genericAdapterTrafficStatsAttrEntry 5 }
adapterTxErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets that failed to transmit."
::= { genericAdapterTrafficStatsAttrEntry 6 }
adapterRxDropped OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of receive packets dropped due to overrun."
::= { genericAdapterTrafficStatsAttrEntry 7 }
adapterTxDropped OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of transmit packets dropped due to successive collisions."
::= { genericAdapterTrafficStatsAttrEntry 8 }
adapterRxMulticast OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of Multicast packets received."
::= { genericAdapterTrafficStatsAttrEntry 9 }
adapterCollisions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of single collisions."
::= { genericAdapterTrafficStatsAttrEntry 10 }
-- *******************************
-- Physical Adapter Attr Table
-- *******************************
physicalAdaptersAttrTables OBJECT IDENTIFIER ::= { adaptersTables 2 }
physicalAdaptersAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhysicalAdapterAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Attributes common to all Physical Adapters."
::= { physicalAdaptersAttrTables 1 }
physicalAdapterAttrEntry OBJECT-TYPE
SYNTAX PhysicalAdapterAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Attributes common to all Physical Adapters.
There is one 'entry' for each standalone or member adapter."
INDEX { physicalAdapterIndex }
::= { physicalAdaptersAttrTable 1 }
PhysicalAdapterAttrEntry ::= SEQUENCE {
physicalAdapterIndex InterfaceIndex,
physicalAdapterLinkStatus INTEGER,
physicalAdapterLinkStatusChangesCounter Counter32,
physicalAdapterSpeed Gauge32,
physicalAdapterDplxMode INTEGER,
physicalAdapterAutoNegotiation INTEGER,
physicalAdapterPciBus Integer32,
physicalAdapterPciSlot Integer32,
physicalAdapterIrq Integer32,
physicalAdapterCurrentNA PhysAddress,
physicalAdapterPermanentNA PhysAddress,
physicalAdapterOnlineDiagStatus INTEGER,
physicalAdapterExpressTeamed INTEGER,
physicalAdapterExpressTeamBundleId Integer32
}
physicalAdapterIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value, greater than or equal to zero, for each interface."
::= { physicalAdapterAttrEntry 1 }
physicalAdapterLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
not-available(-1),
link-up(0),
link-down(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Physical adapter link status. Appears only if available -
that is, only if the driver is compliant with SNMP;
otherwise, NO_SUCH_NAME is returned."
::= { physicalAdapterAttrEntry 2 }
physicalAdapterLinkStatusChangesCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of changes in physical adapter link status.
Any change ('up-to-down' or 'down- to-up') is counted.
This value can be reset (to zero) by the user; no other value is permitted.
This value appears only if it is available -
that is, only if the driver is compliant with SNMP;
otherwise, NO_SUCH_NAME is returned."
::= { physicalAdapterAttrEntry 3 }
physicalAdapterSpeed OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Physical adapter speed (in Mbps).
Appears only for an SNMP-compliant adapter with link up."
::= { physicalAdapterAttrEntry 4 }
physicalAdapterDplxMode OBJECT-TYPE
SYNTAX INTEGER {
not-available(0),
half(1),
full(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Physical Adapter Duplex Mode.
Appears only for an SNMP-compliant adapter with link up."
::= { physicalAdapterAttrEntry 5 }
physicalAdapterAutoNegotiation OBJECT-TYPE
SYNTAX INTEGER {
on(0),
off(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Physical adapter autonegotiation mode.
This value appears only if it is available -
that is, only if the driver is compliant with SNMP;
otherwise, NO_SUCH_NAME is returned."
::= { physicalAdapterAttrEntry 6 }
physicalAdapterPciBus OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Physical adapter PCI bus number."
::= { physicalAdapterAttrEntry 7 }
physicalAdapterPciSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Physical adapter PCI slot number."
::= { physicalAdapterAttrEntry 8 }
physicalAdapterIrq OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Physical adapter Interrupt Request number."
::= { physicalAdapterAttrEntry 9 }
physicalAdapterCurrentNA OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current MAC address of the physical adapter(in hex notation)."
::= { physicalAdapterAttrEntry 10 }
physicalAdapterPermanentNA OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Permanent MAC address of the physical adapter(in hex notation)."
::= { physicalAdapterAttrEntry 11 }
physicalAdapterOnlineDiagStatus OBJECT-TYPE
SYNTAX INTEGER {
not-available(-1),
failed(0),
passed(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Online Diagnostics Status of the Physical Adapter.
Online Diagnostics consist of Link Test and other Hardware Tests."
::= { physicalAdapterAttrEntry 12 }
physicalAdapterExpressTeamed OBJECT-TYPE
SYNTAX INTEGER {
not-available(0),
primary(1),
secondary(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Physical Adapter Express team status.
Appears only for an adapter with express teaming capability."
::= { physicalAdapterAttrEntry 13 }
physicalAdapterExpressTeamBundleId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique value to identify the express team in the system."
::= { physicalAdapterAttrEntry 14 }
physicalAdaptersAttrOffloadTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhysicalAdapterAttrOffloadEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Attributes of offloading-enabled physical adapters.
There is one 'entry' for each SNMP-compliant physical adapter."
::= { physicalAdaptersAttrTables 2 }
physicalAdapterAttrOffloadEntry OBJECT-TYPE
SYNTAX PhysicalAdapterAttrOffloadEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Attributes of offloading-enabled physical adapters.
There is one 'entry' for each SNMP-compliant physical adapter."
INDEX { physicalAdapterIndex }
::= { physicalAdaptersAttrOffloadTable 1 }
PhysicalAdapterAttrOffloadEntry ::= SEQUENCE {
physicalAdapterTcpRxChecksumOffLoadEnable INTEGER,
physicalAdapterTcpRxChecksumBad Counter32,
physicalAdapterTcpTxChecksumOffLoadEnable INTEGER,
physicalAdapterIpv4RxChecksumOffLoadEnable INTEGER,
physicalAdapterIpv4TxChecksumOffLoadEnable INTEGER,
physicalAdapterIpv4TCPSegmentationOffLoadEnable INTEGER
}
physicalAdapterTcpRxChecksumOffLoadEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled(0),
disabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When enabled, TCP for 'receive' checksums are performed in hardware."
::= { physicalAdapterAttrOffloadEntry 1 }
physicalAdapterTcpRxChecksumBad OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bad 'receive' checksums."
::= { physicalAdapterAttrOffloadEntry 2 }
physicalAdapterTcpTxChecksumOffLoadEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled(0),
disabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When enabled, TCP for 'transmit' checksums are performed in hardware."
::= { physicalAdapterAttrOffloadEntry 3 }
physicalAdapterIpv4RxChecksumOffLoadEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled(0),
disabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When enabled, IPv4 for 'receive' checksums are performed in hardware."
::= { physicalAdapterAttrOffloadEntry 4 }
physicalAdapterIpv4TxChecksumOffLoadEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled(0),
disabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When enabled, IPv4 for 'receive' checksums are performed in hardware."
::= { physicalAdapterAttrOffloadEntry 5 }
physicalAdapterIpv4TCPSegmentationOffLoadEnable OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When enabled, TCP Segmentation is performed in hardware."
::= { physicalAdapterAttrOffloadEntry 6 }
-- ************************************
-- Virtual Adapter Attr Tables
-- ************************************
virtualAdaptersAttrTables OBJECT IDENTIFIER ::= { adaptersTables 3 }
virtualAdaptersAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF VirtualAdapterAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Attributes common to all iANS-virtual adapters."
::= { virtualAdaptersAttrTables 1 }
virtualAdapterAttrEntry OBJECT-TYPE
SYNTAX VirtualAdapterAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Attributes common to all iANS-virtual adapters.
There is one 'entry' for each virtual adapter"
INDEX { virtualAdapterIndex }
::= { virtualAdaptersAttrTable 1 }
VirtualAdapterAttrEntry ::= SEQUENCE {
virtualAdapterIndex InterfaceIndex,
virtualAdapterAnsId Integer32
}
virtualAdapterIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value, greater than or equal to zero, for each interface."
::= { virtualAdapterAttrEntry 1 }
virtualAdapterAnsId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID of the team to which the adapter belongs."
::= { virtualAdapterAttrEntry 2 }
virtualAdaptersVlanAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF VirtualAdapterVlanAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Attributes common to all iANS-virtual adapters VLANs."
::= { virtualAdaptersAttrTables 2 }
virtualAdapterVlanAttrEntry OBJECT-TYPE
SYNTAX VirtualAdapterVlanAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"VLAN attributes.Appears for virtual adapters that support VLANs only.
There is one 'entry' for each VLAN."
INDEX { virtualAdapterIndex }
::= { virtualAdaptersVlanAttrTable 1 }
VirtualAdapterVlanAttrEntry ::= SEQUENCE {
virtualAdapterVlanId INTEGER
}
virtualAdapterVlanId OBJECT-TYPE
SYNTAX INTEGER {
none(0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID for this virtual adapter VLAN."
::= { virtualAdapterVlanAttrEntry 1 }
-- ********************
-- Ans Attr Tables
-- ********************
ansAttrTables OBJECT IDENTIFIER ::= { adaptersTables 4 }
ansAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF AnsAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ANS attributes."
::= { ansAttrTables 1 }
ansAttrEntry OBJECT-TYPE
SYNTAX AnsAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ANS attributes. There is one 'entry' for each team"
INDEX { ansId }
::= { ansAttrTable 1 }
AnsAttrEntry ::= SEQUENCE {
ansId Integer32,
ansNumberOfMembers Integer32,
ansNumberOfVirtualAdapters Integer32
}
ansId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ANS ID. A unique value."
::= { ansAttrEntry 1 }
ansNumberOfMembers OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of member adapters in the team."
::= { ansAttrEntry 2 }
ansNumberOfVirtualAdapters OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of virtual adapters in the team."
::= { ansAttrEntry 3 }
ansVlansAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF AnsVlanAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ANS attributes."
::= { ansAttrTables 2 }
ansVlanAttrEntry OBJECT-TYPE
SYNTAX AnsVlanAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ANS VLAN attributes.
Appears only if VLAN is active. There is one 'entry' for each Vlan."
INDEX { ansId }
::= { ansVlansAttrTable 1 }
AnsVlanAttrEntry ::= SEQUENCE {
ansVlanTaggingType INTEGER
}
ansVlanTaggingType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
tag-802-1Q(1),
tag-802-1P(2),
tag-802-3AC(3),
tag-iSL(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tagging type of the VLAN adapter."
::= { ansVlanAttrEntry 1 }
ansTeamsAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF AnsTeamAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ANS team attributes."
::= { ansAttrTables 3 }
ansTeamAttrEntry OBJECT-TYPE
SYNTAX AnsTeamAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ANS team attributes. Appears only when adapter teaming exist.
There is one 'entry' for each team."
INDEX { ansId }
::= { ansTeamsAttrTable 1 }
AnsTeamAttrEntry ::= SEQUENCE {
ansTeamName DisplayString,
ansTeamMode INTEGER,
ansTeamLinkState INTEGER,
ansTeamSpeed Gauge32,
ansTeamProbesState INTEGER,
ansTeamProbesMode INTEGER,
ansTeamLoadBalanceRefresh INTEGER,
ansTeamProbesSendTime INTEGER,
ansTeamPreferredPrimaryIndex INTEGER,
ansTeamCurrentPrimaryIndex INTEGER,
ansTeamPreviousPrimaryIndex INTEGER,
ansTeamFailoverCounter Counter32,
ansTeamSlaCompatible INTEGER,
ansTeamAggrSelectionMode INTEGER,
ansTeamRlbSupport INTEGER
}
ansTeamName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique ANS team name"
::= { ansTeamAttrEntry 1 }
ansTeamMode OBJECT-TYPE
SYNTAX INTEGER {
adapter-fault-tolerance(0),
adaptive-load-balancing(1),
static-link-aggregation(2),
iEEE-802-3ad(4),
switch-fault-tolerance(5),
none(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Team mode."
::= { ansTeamAttrEntry 2 }
ansTeamLinkState OBJECT-TYPE
SYNTAX INTEGER {
up(0),
down(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Team link state.
Aggregation of the link state of all team members ( 0 = some up)."
::= { ansTeamAttrEntry 3 }
ansTeamSpeed OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Team speed.Speed of the current primary member (in Mbps)."
::= { ansTeamAttrEntry 4 }
ansTeamProbesState OBJECT-TYPE
SYNTAX INTEGER {
probes-enabled(0),
probes-disabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If enabled, the ANS uses probes to check on its members."
::= { ansTeamAttrEntry 5 }
ansTeamProbesMode OBJECT-TYPE
SYNTAX INTEGER {
broadcast(0),
multicast(1),
not-available(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mode of probe usage."
::= { ansTeamAttrEntry 6 }
ansTeamLoadBalanceRefresh OBJECT-TYPE
SYNTAX INTEGER {
not-available(0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In seconds. If available, the number of seconds that passes before
the software resets or refreshes the current load across team members."
::= { ansTeamAttrEntry 7 }
ansTeamProbesSendTime OBJECT-TYPE
SYNTAX INTEGER {
not-available(0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In seconds. If available,
the interval in seconds during which probe packets are sent."
::= { ansTeamAttrEntry 8 }
ansTeamPreferredPrimaryIndex OBJECT-TYPE
SYNTAX INTEGER {
not-available(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the preferred primary member adapter. "