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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
|
-- Mib files packaged on Tue Mar 17 11:28:59 EDT 2015 for Storage Array Firmware V7.1.5 (R408054)
EQLIPSEC-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, IpAddress, Counter64, Integer32,TimeTicks, enterprises
FROM SNMPv2-SMI
DateAndTime, RowPointer, TruthValue, RowStatus, DisplayString, TimeStamp, StorageType
FROM SNMPv2-TC
equalLogic
FROM EQUALLOGIC-SMI
eqlGroupId
FROM EQLGROUP-MIB
eqlMemberIndex
FROM EQLMEMBER-MIB
Unsigned64
FROM EQLSTORAGEPOOL-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB -- RFC2851
;
--
-- module identity
--
eqlIpsecModule MODULE-IDENTITY
LAST-UPDATED "201503171528Z"
ORGANIZATION "EqualLogic Inc."
CONTACT-INFO
"Contact: Customer Support
Postal: Dell Inc
300 Innovative Way, Suite 301, Nashua, NH 03062
Tel: +1 603-579-9762
E-mail: US-NH-CS-TechnicalSupport@dell.com
WEB: www.equallogic.com"
DESCRIPTION
"Equallogic Inc. group information
Copyright (c) 2002-2010 by Dell, Inc.
All rights reserved. This software may not be copied, disclosed,
transferred, or used except in accordance with a license granted
by Dell, Inc. This software embodies proprietary information
and trade secrets of Dell, Inc.
"
-- Revision history, in reverse chronological order
REVISION "201007190000Z" -- 19-Jul-10
DESCRIPTION "Initial revision"
::= { enterprises equalLogic(12740) 22 }
--
-- groups of related objects
--
eqlIpsecObjects OBJECT IDENTIFIER ::= { eqlIpsecModule 1 }
eqlIpsecNotifications OBJECT IDENTIFIER ::= { eqlIpsecModule 2 }
eqlIpsecConformance OBJECT IDENTIFIER ::= { eqlIpsecModule 3 }
--
-- Textual Conventions
--
SnmpAdminString ::= TEXTUAL-CONVENTION
DISPLAY-HINT "t"
STATUS current
DESCRIPTION "An octet string containing administrative
information, preferably in human-readable form."
SYNTAX OCTET STRING (SIZE (0..1024))
InetPortNumber ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Represents a 16 bit port number of an Internet transport
layer protocol. Port numbers are assigned by IANA. A
current list of all assignments is available from
<http://www.iana.org/>.
The value zero is object-specific and must be defined as
part of the description of any object that uses this
syntax. Examples of the usage of zero might include
situations where a port number is unknown, or when the
value zero is used as a wildcard in a filter."
REFERENCE "STD 6 (RFC 768), STD 7 (RFC 793) and RFC 2960"
SYNTAX Unsigned32 (0..65535)
IpsecAuthType ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"The IpsecAuthType is used to specify the authentication
type to be used with a particular peer."
SYNTAX INTEGER { presharedkey(1), certificates(2), manualkey(3) }
IpsecIdType ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"The IpsecIdType is used to specify the type of identifier
for a peer to be used with the ID payload."
SYNTAX INTEGER { none(1), ipaddress(2), userfqdn(3), fqdn(4), asn1dn(5) }
IpsecEncType ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"The IpsecEncType is used to specify the encryption
algorithm to be used when manual keying is used."
SYNTAX INTEGER { nullenc(1), aes-cbc(2), triple-des-cbc(3) }
--
-- IPSec global settings definition table
--
eqlIpsecTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlIpsecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"EqualLogic-Persistent Storage IPSec global settings
This table contains global IPSec settings."
::= { eqlIpsecObjects 1 }
eqlIpsecEntry OBJECT-TYPE
SYNTAX EqlIpsecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (row) containing global IPSec settings."
INDEX { eqlIpsecInstanceId }
::= { eqlIpsecTable 1 }
EqlIpsecEntry ::=
SEQUENCE {
eqlIpsecInstanceId Integer32,
eqlIpsecEnable TruthValue,
eqlIpsecRowStatus RowStatus
}
eqlIpsecInstanceId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This index identifies the IPSec instance. This index should always be 1."
::= { eqlIpsecEntry 1 }
eqlIpsecEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies if IPSec is enabled or disbaled.
True for enabled and False for disabled."
DEFVAL { false }
::= { eqlIpsecEntry 2 }
eqlIpsecRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the conceptual status of this row.
This object may not be set to active if the requirements
of the spdIpHeadFiltType object are not met. In other
words, if the associated value columns needed by a
particular test have not been set, then attempting to
change this row to an active state will result in an
inconsistentValue error. See the spdIpHeadFiltType
object description for further details."
::= { eqlIpsecEntry 3 }
--
-- Policy IPHeader filter definition table
--
eqlIpsecPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlIpsecPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"EqualLogic-Persistent Storage IPSec Policy Table.
This table contains a list of filter definitions."
::= { eqlIpsecObjects 2 }
eqlIpsecPolicyEntry OBJECT-TYPE
SYNTAX EqlIpsecPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A definition of a particular filter."
INDEX { eqlIpsecPolicyInstanceId }
::= { eqlIpsecPolicyTable 1 }
EqlIpsecPolicyEntry ::= SEQUENCE {
eqlIpsecPolicyInstanceId Integer32,
eqlIpsecPolicyFilterName SnmpAdminString,
eqlIpsecPolicyFilterIPVersion InetAddressType,
eqlIpsecPolicyFilterAddress InetAddress,
eqlIpsecPolicyFilterNetmaskLen Integer32,
eqlIpsecPolicyFilterLocalAddress InetAddress,
eqlIpsecPolicyFilterPort Integer32,
eqlIpsecPolicyFilterLocalPort Integer32,
eqlIpsecPolicyFilterProtocol Integer32,
eqlIpsecPolicyFilterPeerName SnmpAdminString,
eqlIpsecPolicyFilterAction INTEGER,
eqlIpsecPolicyFilterRowStatus RowStatus
}
eqlIpsecPolicyInstanceId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This index identifies the IPSec policy instance."
::= { eqlIpsecPolicyEntry 1 }
eqlIpsecPolicyFilterName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administrative name for this filter."
::= { eqlIpsecPolicyEntry 2 }
eqlIpsecPolicyFilterIPVersion OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Internet Protocol version the addresses are to match
against. The value of this property determines the size
and format of the eqlIpsecPolicyFilterAddress and
eqlIpsecPolicyFilterLocalAddress."
DEFVAL { ipv6 }
::= { eqlIpsecPolicyEntry 3 }
eqlIpsecPolicyFilterAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The starting address of a source address range that the
packet must match against for this filter to be
considered TRUE.
This object is only used if sourceAddress is set in
spdIpHeadFiltType."
::= { eqlIpsecPolicyEntry 4 }
eqlIpsecPolicyFilterNetmaskLen OBJECT-TYPE
SYNTAX Integer32 (0..128)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ending address of a source address range to check a
packet against, where the starting is specified by the
spdIpHeadFiltSrcAddressBegin object. Set this column to
the same value as the spdIpHeadFiltSrcAddressBegin
column to get an exact single address match.
This object is only used if sourceAddress is set in
spdIpHeadFiltType."
::= { eqlIpsecPolicyEntry 5 }
eqlIpsecPolicyFilterLocalAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Local IP Address on the array to bind a policy to.
This option is only used when the Peer is of type manual.
Can be either a IPv4 or IPV6 address."
::= { eqlIpsecPolicyEntry 6 }
eqlIpsecPolicyFilterPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The low port of the port range a packet's source must
match against. To match, the port number must be
greater than or equal to this value.
This object is only used if sourcePort is set in
spdIpHeadFiltType.
The value of 0 for this object is illegal."
::= { eqlIpsecPolicyEntry 7 }
eqlIpsecPolicyFilterLocalPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The low port of the port range a packet's source must
match against. To match, the port number must be
greater than or equal to this value.
This object is only used if sourcePort is set in
spdIpHeadFiltType.
The value of 0 for this object is illegal.
This object specifies the local port to be used."
::= { eqlIpsecPolicyEntry 8 }
eqlIpsecPolicyFilterProtocol OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The protocol number the incoming packet must match
against for this filter to be evaluated as true.
This object is only used if protocol is set in
spdIpHeadFiltType."
::= { eqlIpsecPolicyEntry 9 }
eqlIpsecPolicyFilterPeerName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This specifies the name of the peer this policy must be associated with."
::= { eqlIpsecPolicyEntry 10 }
eqlIpsecPolicyFilterAction OBJECT-TYPE
SYNTAX INTEGER {
ipsec(1),
pass(2),
drop(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The action to be taken on packets matching this rule."
::= { eqlIpsecPolicyEntry 11 }
eqlIpsecPolicyFilterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the conceptual status of this row.
This object may not be set to active if the requirements
of the spdIpHeadFiltType object are not met. In other
words, if the associated value columns needed by a
particular test have not been set, then attempting to
change this row to an active state will result in an
inconsistentValue error. See the spdIpHeadFiltType
object description for further details."
::= { eqlIpsecPolicyEntry 12 }
--
-- IPSec certificate configuration table
--
eqlIpsecCertConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlIpsecCertConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"EqualLogic-Dynamic IPSec certificate configuration Table.
This table contains the list of certificates configured."
::= { eqlIpsecObjects 3 }
eqlIpsecCertConfigEntry OBJECT-TYPE
SYNTAX EqlIpsecCertConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A definition of a particular certificate."
INDEX { eqlIpsecCertInstanceId }
::= { eqlIpsecCertConfigTable 1 }
EqlIpsecCertConfigEntry ::= SEQUENCE {
eqlIpsecCertInstanceId Integer32,
eqlIpsecCertName SnmpAdminString,
eqlIpsecCertFileName SnmpAdminString,
eqlIpsecCertType INTEGER,
eqlIpsecPrivKeyFileName SnmpAdminString,
eqlIpsecCertPassword SnmpAdminString,
eqlIpsecCertRowStatus RowStatus
}
eqlIpsecCertInstanceId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This index identifies the IPSec certificate instance."
::= { eqlIpsecCertConfigEntry 1 }
eqlIpsecCertName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administrative name for this certificate."
::= { eqlIpsecCertConfigEntry 2 }
eqlIpsecCertFileName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The certificate file name."
::= { eqlIpsecCertConfigEntry 3 }
eqlIpsecCertType OBJECT-TYPE
SYNTAX INTEGER {
local-cert(1),
root-cert(2),
intermediate(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The certificate type. Local cert, Root CA cert or intermediate cert."
::= { eqlIpsecCertConfigEntry 4 }
eqlIpsecPrivKeyFileName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The private key file name."
::= { eqlIpsecCertConfigEntry 5 }
eqlIpsecCertPassword OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The password to use for decrypting certificate."
::= { eqlIpsecCertConfigEntry 6 }
eqlIpsecCertRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the conceptual status of this row.
This object may not be set to active if the requirements
of the spdIpHeadFiltType object are not met. In other
words, if the associated value columns needed by a
particular test have not been set, then attempting to
change this row to an active state will result in an
inconsistentValue error. See the spdIpHeadFiltType
object description for further details."
::= { eqlIpsecCertConfigEntry 7 }
--
-- IPSec peer configuration table
--
eqlIpsecPeerTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlIpsecPeerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"EqualLogic-Persistent Storage IPSec peer Table.
This table contains the list of peers configured."
::= { eqlIpsecObjects 4 }
eqlIpsecPeerEntry OBJECT-TYPE
SYNTAX EqlIpsecPeerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A definition of a particular certificate."
INDEX { eqlIpsecPeerInstanceId }
::= { eqlIpsecPeerTable 1 }
EqlIpsecPeerEntry ::= SEQUENCE {
eqlIpsecPeerInstanceId Integer32,
eqlIpsecPeerName SnmpAdminString,
eqlIpsecPeerAuthType INTEGER,
eqlIpsecPeerPreSharedKey DisplayString,
eqlIpsecPeerCertIdType INTEGER,
eqlIpsecPeerCertIdValue SnmpAdminString,
eqlIpsecPeerNullEnc TruthValue,
eqlIpsecPeerTunnelMode TruthValue,
eqlIpsecPeerTunnelAddressIPVersion InetAddressType,
eqlIpsecPeerTunnelAddress InetAddress,
eqlIpsecPeerIkeV2 TruthValue,
eqlIpsecPeerManualKeyEncAlg INTEGER,
eqlIpsecPeerManualKeyEncKeyOut SnmpAdminString,
eqlIpsecPeerManualKeyEncKeyIn SnmpAdminString,
eqlIpsecPeerManualKeyAuthAlg INTEGER,
eqlIpsecPeerManualKeyAuthKeyOut SnmpAdminString,
eqlIpsecPeerManualKeyAuthKeyIn SnmpAdminString,
eqlIpsecPeerManualKeySpiOut Integer32,
eqlIpsecPeerManualKeySpiIn Integer32,
eqlIpsecPeerRowStatus RowStatus
}
eqlIpsecPeerInstanceId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This index identifies the IPSec policy instance."
::= { eqlIpsecPeerEntry 1 }
eqlIpsecPeerName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administrative name for this peer."
::= { eqlIpsecPeerEntry 2 }
eqlIpsecPeerAuthType OBJECT-TYPE
SYNTAX INTEGER {
presharedkey(1),
certificates(2),
manualkey(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The authentication method used with this peer.
Pre-shared keys, certificates and manual keys are the options."
::= { eqlIpsecPeerEntry 3 }
eqlIpsecPeerPreSharedKey OBJECT-TYPE
SYNTAX DisplayString (SIZE(6..130))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The pre-shared key to be used during authentication.
It is mandatory that this only contain printable ASCII
ASCII characters, meaning each byte must be in the range
of 33 to 126."
::= { eqlIpsecPeerEntry 4 }
eqlIpsecPeerCertIdType OBJECT-TYPE
SYNTAX INTEGER { none(1), ipaddress(2), userfqdn(3), fqdn(4), asn1dn(5) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The identifier type to be used in ID payload.
Only applicable if the auth type is certificates."
::= { eqlIpsecPeerEntry 5 }
eqlIpsecPeerCertIdValue OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The pre-shared key to be used during authentication.
Only applicable if the auth type is certificates."
::= { eqlIpsecPeerEntry 6 }
eqlIpsecPeerNullEnc OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This specifies if null encryption is to be used.
Only applicable if the auth type is certificates or pre-shared keys."
::= { eqlIpsecPeerEntry 7 }
eqlIpsecPeerTunnelMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This specifies if tunnel mode is to be used with this peer."
DEFVAL {false}
::= { eqlIpsecPeerEntry 8 }
eqlIpsecPeerTunnelAddressIPVersion OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Internet Protocol version the addresses are to match
against. The value of this property determines the size
and format of the spdIpHeadFiltSrcAddressBegin,
spdIpHeadFiltSrcAddressEnd,
spdIpHeadFiltDstAddressBegin, and
spdIpHeadFiltDstAddressEnd objects.
Values of unknown, ipv4z, ipv6z and dns are not legal
values for this object."
DEFVAL { ipv6 }
::= { eqlIpsecPeerEntry 9 }
eqlIpsecPeerTunnelAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The address of the tunnel remote end
This object is only used if tunnelMode is set to True."
::= { eqlIpsecPeerEntry 10 }
eqlIpsecPeerIkeV2 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This specifies the IKE version to be used with this peer. If the peer talks
the other version, the IPSec session will not be established."
DEFVAL {false}
::= { eqlIpsecPeerEntry 11 }
eqlIpsecPeerManualKeyEncAlg OBJECT-TYPE
SYNTAX INTEGER { none(0), des-cbc(2), triple-des-cbc(3), cast128-cbc(6), blowfish-cbc(7), null-enc(11), aes(12), aes-ctr(13), skipjack(250) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The encryption algorithm to be used.
Only applicable if the auth type is manual keys."
::= { eqlIpsecPeerEntry 12 }
eqlIpsecPeerManualKeyEncKeyOut OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The encryption key to be used in the outbound direction.
Specified as a hex string.
Only applicable if the auth type is manual keys."
::= { eqlIpsecPeerEntry 13 }
eqlIpsecPeerManualKeyEncKeyIn OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The encryption key to be used in the inbound direction.
Specified as a hex string.
Only applicable if the auth type is manual keys."
::= { eqlIpsecPeerEntry 14 }
eqlIpsecPeerManualKeyAuthAlg OBJECT-TYPE
SYNTAX INTEGER { none(0), sha1(1), sha256(2) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The authentication algorithm to be used.
Only applicable if the auth type is manual keys."
::= { eqlIpsecPeerEntry 15 }
eqlIpsecPeerManualKeyAuthKeyOut OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The authentication key to be used in the outbound direction.
Specified as a string.
Only applicable if the auth type is manual keys."
::= { eqlIpsecPeerEntry 16 }
eqlIpsecPeerManualKeyAuthKeyIn OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The authentication key to be used in the inbound direction.
Specified as a string.
Only applicable if the auth type is manual keys."
::= { eqlIpsecPeerEntry 17 }
eqlIpsecPeerManualKeySpiOut OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SPI to be used in the outbound direction.
Only applicable if the auth type is manual keys."
::= { eqlIpsecPeerEntry 18 }
eqlIpsecPeerManualKeySpiIn OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SPI to be used in the inbound direction.
Only applicable if the auth type is manual keys."
::= { eqlIpsecPeerEntry 19 }
eqlIpsecPeerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the conceptual status of this row.
This object may not be set to active if the requirements
of the spdIpHeadFiltType object are not met. In other
words, if the associated value columns needed by a
particular test have not been set, then attempting to
change this row to an active state will result in an
inconsistentValue error. See the spdIpHeadFiltType
object description for further details."
::= { eqlIpsecPeerEntry 20 }
--
-- IPSec certificate display table
--
eqlIpsecCertDisplayTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlIpsecCertDisplayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"EqualLogic-Dynamic IPSec certificate display Table.
This table is used to display certificate details."
::= { eqlIpsecObjects 5 }
eqlIpsecCertDisplayEntry OBJECT-TYPE
SYNTAX EqlIpsecCertDisplayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contents of a particular certificate instance for display."
INDEX { eqlIpsecCertInstanceId }
::= { eqlIpsecCertDisplayTable 1 }
EqlIpsecCertDisplayEntry ::= SEQUENCE {
eqlIpsecCertDisplayName SnmpAdminString,
eqlIpsecCertDisplayIssuedToDName SnmpAdminString,
eqlIpsecCertDisplaySerialNumber SnmpAdminString,
eqlIpsecCertDisplayIssuedByDName SnmpAdminString,
eqlIpsecCertDisplayIssuedOn SnmpAdminString,
eqlIpsecCertDisplayExpiresOn SnmpAdminString,
eqlIpsecCertDisplaySha1Fingerprint SnmpAdminString,
eqlIpsecCertDisplayMd5Fingerprint SnmpAdminString,
eqlIpsecCertDisplayLocal INTEGER,
eqlIpsecCertDisplayFormat INTEGER,
eqlIpsecCertDisplaySubAltName SnmpAdminString
}
eqlIpsecCertDisplayName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administrative name for this certificate."
::= { eqlIpsecCertDisplayEntry 1 }
eqlIpsecCertDisplayIssuedToDName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..256))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Display string for the field issued to distinguished name."
::= { eqlIpsecCertDisplayEntry 2 }
eqlIpsecCertDisplaySerialNumber OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Display string for the field serial number."
::= { eqlIpsecCertDisplayEntry 3 }
eqlIpsecCertDisplayIssuedByDName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..256))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Display string for the field issued by distinguished name."
::= { eqlIpsecCertDisplayEntry 4 }
eqlIpsecCertDisplayIssuedOn OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Display string for the field issued on."
::= { eqlIpsecCertDisplayEntry 5 }
eqlIpsecCertDisplayExpiresOn OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Display string for the field expires on."
::= { eqlIpsecCertDisplayEntry 6 }
eqlIpsecCertDisplaySha1Fingerprint OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Display string for the field SHA1 finger print."
::= { eqlIpsecCertDisplayEntry 7 }
eqlIpsecCertDisplayMd5Fingerprint OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Display string for the field MD5 finger print."
::= { eqlIpsecCertDisplayEntry 8 }
eqlIpsecCertDisplayLocal OBJECT-TYPE
SYNTAX INTEGER {
local-cert(1),
root-cert(2),
intermediate(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Boolean that indicates if this is a localm certificate or not."
::= { eqlIpsecCertDisplayEntry 9 }
eqlIpsecCertDisplayFormat OBJECT-TYPE
SYNTAX INTEGER {
x509(1),
pkcs12(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The certificate format. x.509 or pkcs12."
::= { eqlIpsecCertDisplayEntry 10 }
eqlIpsecCertDisplaySubAltName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..256))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Display string for the field MD5 finger print."
::= { eqlIpsecCertDisplayEntry 11 }
--
-- IPSec SA display table
--
eqlIpsecSecAssocTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlIpsecSecAssocEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"EqualLogic-Dynamic IPSec security association Table.
This table is used to display the security association details."
::= { eqlIpsecObjects 6 }
eqlIpsecSecAssocEntry OBJECT-TYPE
SYNTAX EqlIpsecSecAssocEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contents of a particular SA instance for display."
INDEX { eqlGroupId, eqlMemberIndex,
eqlIpsecSecAssocInstanceIdHigh,
eqlIpsecSecAssocInstanceIdLow }
::= { eqlIpsecSecAssocTable 1 }
EqlIpsecSecAssocEntry ::= SEQUENCE {
eqlIpsecSecAssocInstanceIdHigh Unsigned32,
eqlIpsecSecAssocInstanceIdLow Unsigned32,
eqlIpsecSecAssocSrcAddressIPVersion InetAddressType,
eqlIpsecSecAssocSrcAddress InetAddress,
eqlIpsecSecAssocDstAddressIPVersion InetAddressType,
eqlIpsecSecAssocDstAddress InetAddress,
eqlIpsecSecAssocEncAlg INTEGER,
eqlIpsecSecAssocAuthAlg INTEGER,
eqlIpsecSecAssocSpi Integer32,
eqlIpsecSecAssocEncKey SnmpAdminString,
eqlIpsecSecAssocAuthKey SnmpAdminString,
eqlIpsecSecAssocManual TruthValue
}
eqlIpsecSecAssocInstanceIdHigh OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This index carries the high-order 32-bit of the instance ID that identifies the IPSec security association."
::= { eqlIpsecSecAssocEntry 1 }
eqlIpsecSecAssocInstanceIdLow OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This index carries the low-order 32-bit of the instance ID that identifies the IPSec security association."
::= { eqlIpsecSecAssocEntry 2 }
eqlIpsecSecAssocSrcAddressIPVersion OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP version of the source endpoint."
::= { eqlIpsecSecAssocEntry 3 }
eqlIpsecSecAssocSrcAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address of the source endpoint."
::= { eqlIpsecSecAssocEntry 4 }
eqlIpsecSecAssocDstAddressIPVersion OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP version of the destination endpoint."
::= { eqlIpsecSecAssocEntry 5 }
eqlIpsecSecAssocDstAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address of the destination endpoint."
::= { eqlIpsecSecAssocEntry 6 }
eqlIpsecSecAssocEncAlg OBJECT-TYPE
SYNTAX INTEGER { none(0), des-cbc(2), triple-des-cbc(3), cast128-cbc(6), blowfish-cbc(7), null-enc(11), aes(12), aes-ctr(13), skipjack(250) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The encryption algorithm used."
::= { eqlIpsecSecAssocEntry 7 }
eqlIpsecSecAssocAuthAlg OBJECT-TYPE
SYNTAX INTEGER { none(0), md5-hmac(2), sha1-hmac(3), sha2-256(5), sha2-384(6), sha2-512(7), ripemd160-hmac(8), aes-xcbc-mac(9), md5(249), sha(250), null(251), tcp-md5(252) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The authentication algorithm used."
::= { eqlIpsecSecAssocEntry 8 }
eqlIpsecSecAssocSpi OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"SPI used in the security association."
::= { eqlIpsecSecAssocEntry 9 }
eqlIpsecSecAssocEncKey OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Display string for the encryption key used in the SA."
::= { eqlIpsecSecAssocEntry 10 }
eqlIpsecSecAssocAuthKey OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Display string for the authentication key used in the SA."
::= { eqlIpsecSecAssocEntry 11 }
eqlIpsecSecAssocManual OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"True means SA is from a manual key configured."
::= { eqlIpsecSecAssocEntry 12 }
--
-- IPSec stale SA delete table
--
eqlIpsecStaleSecAssocDeleteTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlIpsecStaleSecAssocDeleteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"EqualLogic-Dynamic IPSec stale security association
delete Table. This table is used to indicate the
destination address and type of all security associations
to delete."
::= { eqlIpsecObjects 7 }
eqlIpsecStaleSecAssocDeleteEntry OBJECT-TYPE
SYNTAX EqlIpsecStaleSecAssocDeleteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contents of a particular SA instance for delete."
INDEX { eqlGroupId, eqlMemberIndex, eqlIpsecStaleSecAssocDeleteInstanceId }
::= { eqlIpsecStaleSecAssocDeleteTable 1 }
EqlIpsecStaleSecAssocDeleteEntry ::= SEQUENCE {
eqlIpsecStaleSecAssocDeleteInstanceId Integer32,
eqlIpsecStaleSecAssocDeleteDestAddressIPVersion InetAddressType,
eqlIpsecStaleSecAssocDeleteDestAddress InetAddress,
eqlIpsecStaleSecAssocDeleteRowStatus RowStatus
}
eqlIpsecStaleSecAssocDeleteInstanceId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This index identifies the IPSec stale SA delete instance."
::= { eqlIpsecStaleSecAssocDeleteEntry 1 }
eqlIpsecStaleSecAssocDeleteDestAddressIPVersion OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP version of the destination address of the security
associations to delete."
::= { eqlIpsecStaleSecAssocDeleteEntry 2 }
eqlIpsecStaleSecAssocDeleteDestAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination address of the security associations to delete."
::= { eqlIpsecStaleSecAssocDeleteEntry 3 }
eqlIpsecStaleSecAssocDeleteRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the conceptual status of this row."
::= { eqlIpsecStaleSecAssocDeleteEntry 4 }
END
|