-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdefaults-db.yml
More file actions
2929 lines (2928 loc) · 98.9 KB
/
defaults-db.yml
File metadata and controls
2929 lines (2928 loc) · 98.9 KB
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
# Bios Defaults Database
# This contains the default/factory reset values
#
# THIS FILE IS FOR REFERENCE ONLY. THESE SETTINGS ARE NOT SET BY BIOS_TOOL.
# Please see bios_settings.yml for the BIOS settings that are applied by BIOS_TOOL.
Dell Inc.:
AMD:
PowerEdge R6615:
AcPwrRcvry: Last
AcPwrRcvryDelay: Immediate
AcPwrRcvryUserDelay: 120
AesNi: Enabled
AgesaVersion: GenoaPI-SP5 1.0.0.B
ApbDis: Disabled
AssetTag: ''
AuthorizeDeviceFirmware: Disabled
BiosNvmeDriver: DellQualifiedDrives
BoostFMax: BoostFMaxAuto
BootMode: Uefi
BootSeqRetry: Enabled
CECriticalSEL: Disabled
CcdCores: All
CcxAsNumaDomain: Disabled
ConTermType: Vt100Vt220
ControlledTurbo: Disabled
ControlledTurboMinusBin: 0
CorrEccSmi: Enabled
CpuAcpiCstC2Latency: 800
CpuMinSevAsid: 1
CurrentEmbVideoState: Enabled
Daylight: Disabled
DellAutoDiscovery: PlatformDefault
DellWyseP25BIOSAccess: Enabled
DeterminismSlider: PowerDeterminism
DfCState: Enabled
DfPstateFreqOptimizer: Enabled
DfPstateLatencyOptimizer: Enabled
DimmSlot00: Enabled
DimmSlot01: Enabled
DimmSlot02: Enabled
DimmSlot03: Enabled
DimmSlot04: Enabled
DimmSlot05: Enabled
DimmSlot06: Enabled
DimmSlot07: Enabled
DimmSlot08: Enabled
DimmSlot09: Enabled
DimmSlot10: Enabled
DimmSlot11: Enabled
DramRefreshDelay: Minimum
DrtmSkinit: 'Off'
EmbNic1Nic2: Enabled
EmbSata: AhciMode
EmbVideo: Enabled
EqBypassToHighestRate: Disabled
ErrPrompt: Enabled
ExtSerialConnector: Serial1
FailSafeBaud: '115200'
ForceInt10: Disabled
GenericUsbBoot: Disabled
HddFailover: Disabled
HddPlaceholder: Disabled
Hsmp: Enabled
HttpDev1DhcpEnDis: Enabled
HttpDev1Dns1: ''
HttpDev1Dns2: ''
HttpDev1DnsDhcpEnDis: Enabled
HttpDev1EnDis: Disabled
HttpDev1Gateway: ''
HttpDev1Interface: NIC.Embedded.1-1-1
HttpDev1Ip: ''
HttpDev1Mask: ''
HttpDev1Protocol: IPv4
HttpDev1TlsMode: OneWay
HttpDev1Uri: ''
HttpDev1VlanEnDis: Disabled
HttpDev1VlanId: 1
HttpDev1VlanPriority: 0
HttpDev2DhcpEnDis: Enabled
HttpDev2Dns1: ''
HttpDev2Dns2: ''
HttpDev2DnsDhcpEnDis: Enabled
HttpDev2EnDis: Disabled
HttpDev2Gateway: ''
HttpDev2Interface: NIC.Embedded.1-1-1
HttpDev2Ip: ''
HttpDev2Mask: ''
HttpDev2Protocol: IPv4
HttpDev2TlsMode: OneWay
HttpDev2Uri: ''
HttpDev2VlanEnDis: Disabled
HttpDev2VlanId: 1
HttpDev2VlanPriority: 0
HttpDev3DhcpEnDis: Enabled
HttpDev3Dns1: ''
HttpDev3Dns2: ''
HttpDev3DnsDhcpEnDis: Enabled
HttpDev3EnDis: Disabled
HttpDev3Gateway: ''
HttpDev3Interface: NIC.Embedded.1-1-1
HttpDev3Ip: ''
HttpDev3Mask: ''
HttpDev3Protocol: IPv4
HttpDev3TlsMode: OneWay
HttpDev3Uri: ''
HttpDev3VlanEnDis: Disabled
HttpDev3VlanId: 1
HttpDev3VlanPriority: 0
HttpDev4DhcpEnDis: Enabled
HttpDev4Dns1: ''
HttpDev4Dns2: ''
HttpDev4DnsDhcpEnDis: Enabled
HttpDev4EnDis: Disabled
HttpDev4Gateway: ''
HttpDev4Interface: NIC.Embedded.1-1-1
HttpDev4Ip: ''
HttpDev4Mask: ''
HttpDev4Protocol: IPv4
HttpDev4TlsMode: OneWay
HttpDev4Uri: ''
HttpDev4VlanEnDis: Disabled
HttpDev4VlanId: 1
HttpDev4VlanPriority: 0
IntegratedNetwork1: Enabled
IommuSupport: Enabled
IscsiDev1Con1Auth: None
IscsiDev1Con1ChapName: ''
IscsiDev1Con1ChapSecret: ''
IscsiDev1Con1ChapType: OneWay
IscsiDev1Con1DhcpEnDis: Disabled
IscsiDev1Con1EnDis: Disabled
IscsiDev1Con1Gateway: ''
IscsiDev1Con1Interface: NIC.Embedded.1-1-1
IscsiDev1Con1Ip: ''
IscsiDev1Con1IsId: ''
IscsiDev1Con1Lun: '0'
IscsiDev1Con1Mask: ''
IscsiDev1Con1Port: 3260
IscsiDev1Con1Protocol: IPv4
IscsiDev1Con1Retry: 3
IscsiDev1Con1RevChapName: ''
IscsiDev1Con1RevChapSecret: ''
IscsiDev1Con1TargetIp: ''
IscsiDev1Con1TargetName: ''
IscsiDev1Con1TgtDhcpEnDis: Disabled
IscsiDev1Con1Timeout: 10000
IscsiDev1Con1VlanEnDis: Disabled
IscsiDev1Con1VlanId: 1
IscsiDev1Con1VlanPriority: 0
IscsiDev1Con2Auth: None
IscsiDev1Con2ChapName: ''
IscsiDev1Con2ChapSecret: ''
IscsiDev1Con2ChapType: OneWay
IscsiDev1Con2DhcpEnDis: Disabled
IscsiDev1Con2EnDis: Disabled
IscsiDev1Con2Gateway: ''
IscsiDev1Con2Interface: NIC.Embedded.1-1-1
IscsiDev1Con2Ip: ''
IscsiDev1Con2IsId: ''
IscsiDev1Con2Lun: '0'
IscsiDev1Con2Mask: ''
IscsiDev1Con2Port: 3260
IscsiDev1Con2Protocol: IPv4
IscsiDev1Con2Retry: 3
IscsiDev1Con2RevChapName: ''
IscsiDev1Con2RevChapSecret: ''
IscsiDev1Con2TargetIp: ''
IscsiDev1Con2TargetName: ''
IscsiDev1Con2TgtDhcpEnDis: Disabled
IscsiDev1Con2Timeout: 10000
IscsiDev1Con2VlanEnDis: Disabled
IscsiDev1Con2VlanId: 1
IscsiDev1Con2VlanPriority: 0
IscsiDev1ConOrder: Con1Con2
IscsiDev1EnDis: Disabled
IscsiInitiatorName: ''
KernelDmaProtection: Disabled
L1RegionPrefetcher: Enabled
L1StreamHwPrefetcher: Enabled
L1StridePrefetcher: Enabled
L2StreamHwPrefetcher: Enabled
L2UpDownPrefetcher: Enabled
LogicalProc: Enabled
MadtCoreEnumeration: Linear
MemFrequency: MaxPerf
MemPatrolScrub: Standard
MemRefreshRate: 1x
MemTest: Disabled
MmioLimit: 8TB
MpioVersion: 0x01.0x00.0x2A.0x6D
NumLock: 'On'
NumaNodesPerSocket: '1'
NumberOfPxeDevices: '4'
NvmeMode: NonRaid
NvmeofEnDis: Disabled
NvmeofHostId: 4C4C4544-0048-4A10-8059-B6C04F445A33
NvmeofHostNqn: nqn.1988-11.com.dell:PowerEdge.R6615.6HJYDZ3
NvmeofHostSecurityPath: ''
NvmeofSubsys1Address: ''
NvmeofSubsys1Auth: None
NvmeofSubsys1ConInterface: NIC.Embedded.1-1-1
NvmeofSubsys1ConProtocol: IPv4
NvmeofSubsys1ControllerId: 0
NvmeofSubsys1EnDis: Disabled
NvmeofSubsys1HostDhcp: Disabled
NvmeofSubsys1HostGateway: ''
NvmeofSubsys1HostIP: ''
NvmeofSubsys1HostMask: ''
NvmeofSubsys1InfoDhcp: Disabled
NvmeofSubsys1NameSpaceId: ''
NvmeofSubsys1Nqn: ''
NvmeofSubsys1Port: 4420
NvmeofSubsys1Retry: 3
NvmeofSubsys1Security: Disabled
NvmeofSubsys1SecurityKeyPath: ''
NvmeofSubsys1Timeout: 10000
NvmeofSubsys1TransType: TCP
NvmeofSubsys1VlanEnDis: Disabled
NvmeofSubsys1VlanId: 1
NvmeofSubsys1VlanPriority: 0
NvmeofSubsys2Address: ''
NvmeofSubsys2Auth: None
NvmeofSubsys2ConInterface: NIC.Embedded.1-1-1
NvmeofSubsys2ConProtocol: IPv4
NvmeofSubsys2ControllerId: 0
NvmeofSubsys2EnDis: Disabled
NvmeofSubsys2HostDhcp: Disabled
NvmeofSubsys2HostGateway: ''
NvmeofSubsys2HostIP: ''
NvmeofSubsys2HostMask: ''
NvmeofSubsys2InfoDhcp: Disabled
NvmeofSubsys2NameSpaceId: ''
NvmeofSubsys2Nqn: ''
NvmeofSubsys2Port: 4420
NvmeofSubsys2Retry: 3
NvmeofSubsys2Security: Disabled
NvmeofSubsys2SecurityKeyPath: ''
NvmeofSubsys2Timeout: 10000
NvmeofSubsys2TransType: TCP
NvmeofSubsys2VlanEnDis: Disabled
NvmeofSubsys2VlanId: 1
NvmeofSubsys2VlanPriority: 0
NvmeofSubsys3Address: ''
NvmeofSubsys3Auth: None
NvmeofSubsys3ConInterface: NIC.Embedded.1-1-1
NvmeofSubsys3ConProtocol: IPv4
NvmeofSubsys3ControllerId: 0
NvmeofSubsys3EnDis: Disabled
NvmeofSubsys3HostDhcp: Disabled
NvmeofSubsys3HostGateway: ''
NvmeofSubsys3HostIP: ''
NvmeofSubsys3HostMask: ''
NvmeofSubsys3InfoDhcp: Disabled
NvmeofSubsys3NameSpaceId: ''
NvmeofSubsys3Nqn: ''
NvmeofSubsys3Port: 4420
NvmeofSubsys3Retry: 3
NvmeofSubsys3Security: Disabled
NvmeofSubsys3SecurityKeyPath: ''
NvmeofSubsys3Timeout: 10000
NvmeofSubsys3TransType: TCP
NvmeofSubsys3VlanEnDis: Disabled
NvmeofSubsys3VlanId: 1
NvmeofSubsys3VlanPriority: 0
NvmeofSubsys4Address: ''
NvmeofSubsys4Auth: None
NvmeofSubsys4ConInterface: NIC.Embedded.1-1-1
NvmeofSubsys4ConProtocol: IPv4
NvmeofSubsys4ControllerId: 0
NvmeofSubsys4EnDis: Disabled
NvmeofSubsys4HostDhcp: Disabled
NvmeofSubsys4HostGateway: ''
NvmeofSubsys4HostIP: ''
NvmeofSubsys4HostMask: ''
NvmeofSubsys4InfoDhcp: Disabled
NvmeofSubsys4NameSpaceId: ''
NvmeofSubsys4Nqn: ''
NvmeofSubsys4Port: 4420
NvmeofSubsys4Retry: 3
NvmeofSubsys4Security: Disabled
NvmeofSubsys4SecurityKeyPath: ''
NvmeofSubsys4Timeout: 10000
NvmeofSubsys4TransType: TCP
NvmeofSubsys4VlanEnDis: Disabled
NvmeofSubsys4VlanId: 1
NvmeofSubsys4VlanPriority: 0
OneTimeBootMode: Disabled
OneTimeUefiBootSeqDev: BOSS.SL.10-1
OsWatchdogTimer: Disabled
PPROnUCE: Enabled
PasswordStatus: Unlocked
PcieAspmL1: Disabled
PcieSpeedPmmControl: Auto
PowerCycleRequest: None
PowerProfileSelect: HighPerformanceMode
Proc1Brand: 'AMD EPYC 9454P 48-Core Processor '
Proc1Id: 19-11-1
Proc1L2Cache: 48x1 MB
Proc1L3Cache: 256 MB
Proc1Microcode: '0xA101144'
Proc1NumCores: 48
ProcCStates: Disabled
ProcCcds: All
ProcConfigTdp: Maximum
ProcCoreSpeed: 2.75 GHz
ProcPwrPerf: MaxPerf
ProcTurboMode: Enabled
ProcVirtualization: Enabled
ProcX2Apic: Enabled
PwrButton: Enabled
PxeDev10Interface: NIC.Embedded.1-1-1
PxeDev10Protocol: IPv4
PxeDev10VlanEnDis: Disabled
PxeDev10VlanId: 1
PxeDev10VlanPriority: 0
PxeDev11Interface: NIC.Embedded.1-1-1
PxeDev11Protocol: IPv4
PxeDev11VlanEnDis: Disabled
PxeDev11VlanId: 1
PxeDev11VlanPriority: 0
PxeDev12Interface: NIC.Embedded.1-1-1
PxeDev12Protocol: IPv4
PxeDev12VlanEnDis: Disabled
PxeDev12VlanId: 1
PxeDev12VlanPriority: 0
PxeDev13Interface: NIC.Embedded.1-1-1
PxeDev13Protocol: IPv4
PxeDev13VlanEnDis: Disabled
PxeDev13VlanId: 1
PxeDev13VlanPriority: 0
PxeDev14Interface: NIC.Embedded.1-1-1
PxeDev14Protocol: IPv4
PxeDev14VlanEnDis: Disabled
PxeDev14VlanId: 1
PxeDev14VlanPriority: 0
PxeDev15Interface: NIC.Embedded.1-1-1
PxeDev15Protocol: IPv4
PxeDev15VlanEnDis: Disabled
PxeDev15VlanId: 1
PxeDev15VlanPriority: 0
PxeDev16Interface: NIC.Embedded.1-1-1
PxeDev16Protocol: IPv4
PxeDev16VlanEnDis: Disabled
PxeDev16VlanId: 1
PxeDev16VlanPriority: 0
PxeDev1EnDis: Enabled
PxeDev1Interface: NIC.Embedded.1-1-1
PxeDev1Protocol: IPv4
PxeDev1VlanEnDis: Disabled
PxeDev1VlanId: 1
PxeDev1VlanPriority: 0
PxeDev2EnDis: Disabled
PxeDev2Interface: NIC.Embedded.1-1-1
PxeDev2Protocol: IPv4
PxeDev2VlanEnDis: Disabled
PxeDev2VlanId: 1
PxeDev2VlanPriority: 0
PxeDev3EnDis: Disabled
PxeDev3Interface: NIC.Embedded.1-1-1
PxeDev3Protocol: IPv4
PxeDev3VlanEnDis: Disabled
PxeDev3VlanId: 1
PxeDev3VlanPriority: 0
PxeDev4EnDis: Disabled
PxeDev4Interface: NIC.Embedded.1-1-1
PxeDev4Protocol: IPv4
PxeDev4VlanEnDis: Disabled
PxeDev4VlanId: 1
PxeDev4VlanPriority: 0
PxeDev5Interface: NIC.Embedded.1-1-1
PxeDev5Protocol: IPv4
PxeDev5VlanEnDis: Disabled
PxeDev5VlanId: 1
PxeDev5VlanPriority: 0
PxeDev6Interface: NIC.Embedded.1-1-1
PxeDev6Protocol: IPv4
PxeDev6VlanEnDis: Disabled
PxeDev6VlanId: 1
PxeDev6VlanPriority: 0
PxeDev7Interface: NIC.Embedded.1-1-1
PxeDev7Protocol: IPv4
PxeDev7VlanEnDis: Disabled
PxeDev7VlanId: 1
PxeDev7VlanPriority: 0
PxeDev8Interface: NIC.Embedded.1-1-1
PxeDev8Protocol: IPv4
PxeDev8VlanEnDis: Disabled
PxeDev8VlanId: 1
PxeDev8VlanPriority: 0
PxeDev9Interface: NIC.Embedded.1-1-1
PxeDev9Protocol: IPv4
PxeDev9VlanEnDis: Disabled
PxeDev9VlanId: 1
PxeDev9VlanPriority: 0
RedirAfterBoot: Enabled
RedundantOsBoot: Disabled
RedundantOsLocation: None
RedundantOsState: Visible
Rmp: Disabled
SHA256SetupPassword: ''
SHA256SetupPasswordSalt: ''
SHA256SystemPassword: ''
SHA256SystemPasswordSalt: ''
SecureBoot: Disabled
SecureBootMode: DeployedMode
SecureBootPolicy: Standard
SecurityFreezeLock: Enabled
SerialComm: OnConRedir
SerialPortAddress: Com1
SetBootOrderDis: ''
SetBootOrderDis2: ''
SetBootOrderEn: BOSS.SL.10-1,NIC.PxeDevice.1-1
SetBootOrderEn2: ''
SetBootOrderFqdd1: ''
SetBootOrderFqdd10: ''
SetBootOrderFqdd11: ''
SetBootOrderFqdd12: ''
SetBootOrderFqdd13: ''
SetBootOrderFqdd14: ''
SetBootOrderFqdd15: ''
SetBootOrderFqdd16: ''
SetBootOrderFqdd2: ''
SetBootOrderFqdd3: ''
SetBootOrderFqdd4: ''
SetBootOrderFqdd5: ''
SetBootOrderFqdd6: ''
SetBootOrderFqdd7: ''
SetBootOrderFqdd8: ''
SetBootOrderFqdd9: ''
SetLegacyHddOrderFqdd1: ''
SetLegacyHddOrderFqdd10: ''
SetLegacyHddOrderFqdd11: ''
SetLegacyHddOrderFqdd12: ''
SetLegacyHddOrderFqdd13: ''
SetLegacyHddOrderFqdd14: ''
SetLegacyHddOrderFqdd15: ''
SetLegacyHddOrderFqdd16: ''
SetLegacyHddOrderFqdd2: ''
SetLegacyHddOrderFqdd3: ''
SetLegacyHddOrderFqdd4: ''
SetLegacyHddOrderFqdd5: ''
SetLegacyHddOrderFqdd6: ''
SetLegacyHddOrderFqdd7: ''
SetLegacyHddOrderFqdd8: ''
SetLegacyHddOrderFqdd9: ''
SetupPassword: null
Slot1: Enabled
Slot1Bif: x16
Slot2: Enabled
Slot2Bif: x16
Sme: Disabled
SmmSecurityMitigation: Disabled
SmuVersion: 0x04.0x47.0x79.0x00
Snp: Disabled
SriovGlobalEnable: Disabled
StrongPassword: Disabled
StrongPasswordMinLength: 8
SysMemSize: 384 GB
SysMemSpeed: 4800 MT/s
SysMemType: ECC DDR5
SysMfrContactInfo: www.dell.com
SysPassword: null
SysPrepClean: None
SysProfile: PerfOptimized
SystemBiosVersion: 1.7.2
SystemCpldVersion: 1.4.0
SystemManufacturer: Dell Inc.
SystemModelName: PowerEdge R6615
SystemServiceTag: 6HJYDZ3
TimeZone: LOCAL
Tpm2Algorithm: SHA256
Tpm2Hierarchy: Enabled
TpmFirmware: 7.2.2.0
TpmInfo: 'Type: 2.0 NTC'
TpmPpiBypassClear: Disabled
TpmPpiBypassProvision: Disabled
TpmSecurity: 'On'
TransparentSme: Disabled
UefiCaCertScope: DeviceFirmwareAndOs
UefiComplianceVersion: '2.7'
UefiVariableAccess: Standard
UsbManagedPort: 'On'
UsbPorts: AllOn
VideoMem: 16 MB
WorkloadProfile: NotConfigured
WriteCache: Disabled
Intel:
PowerEdge R670:
AcpiFpdt: Disabled
AesNi: Enabled
AssetTag: ''
AuthorizeDeviceFirmware: Disabled
AvxIccpPreGrantLicense: Disabled
BiosNvmeDriver: AllDrives
BootMode: Uefi
BootSeqRetry: Enabled
CECriticalSEL: Disabled
CXLMemoryAttribute: SpecialPurposeMemory
CXLMemoryMode: Homogeneous
ConTermType: Vt100Vt220
ControlledTurbo: Disabled
ControlledTurboMinusBin: 0
CorrEccSmi: Enabled
CpuInterconnectBusLinkPower: Enabled
CpuPaLimit: Disabled
CurrentCXLMemoryInterleaveMode: Heterogeneous
CurrentEmbVideoState: Enabled
CxlMemSize: 0 GB
Daylight: Disabled
DeadLineLlcAlloc: Enabled
DellAutoDiscovery: PlatformDefault
DellWyseP25BIOSAccess: Enabled
DimmSlot00: Enabled
DimmSlot01: Enabled
DimmSlot02: Enabled
DimmSlot03: Enabled
DimmSlot04: Enabled
DimmSlot05: Enabled
DimmSlot06: Enabled
DimmSlot07: Enabled
DimmSlot08: Enabled
DimmSlot09: Enabled
DimmSlot10: Enabled
DimmSlot11: Enabled
DimmSlot12: Enabled
DimmSlot13: Enabled
DimmSlot14: Enabled
DimmSlot15: Enabled
DimmSlot16: Enabled
DimmSlot17: Enabled
DimmSlot18: Enabled
DimmSlot19: Enabled
DimmSlot20: Enabled
DimmSlot21: Enabled
DimmSlot22: Enabled
DimmSlot23: Enabled
DimmSlot24: Enabled
DimmSlot25: Enabled
DimmSlot26: Enabled
DimmSlot27: Enabled
DimmSlot28: Enabled
DimmSlot29: Enabled
DimmSlot30: Enabled
DimmSlot31: Enabled
DirectoryAtoS: Disabled
DirectoryMode: Enabled
EmbVideo: Enabled
EnableTdx: Disabled
EnableTdxSeamldr: Disabled
EnergyEfficientTurbo: Enabled
EnergyPerformanceBias: BalancedPerformance
ErrPrompt: Enabled
ExtSerialConnector: Serial1
FailSafeBaud: '115200'
GenericUsbBoot: Disabled
HddPlaceholder: Disabled
HostNqnMode: HostNqnModeDell
HttpDev1DhcpEnDis: Enabled
HttpDev1Dns1: ''
HttpDev1Dns2: ''
HttpDev1DnsDhcpEnDis: Enabled
HttpDev1EnDis: Disabled
HttpDev1Gateway: ''
HttpDev1Interface: NIC.Slot.2-1-1
HttpDev1Ip: ''
HttpDev1Mask: ''
HttpDev1Protocol: IPv4
HttpDev1TlsMode: OneWay
HttpDev1Uri: ''
HttpDev1VlanEnDis: Disabled
HttpDev1VlanId: 1
HttpDev1VlanPriority: 0
HttpDev2DhcpEnDis: Enabled
HttpDev2Dns1: ''
HttpDev2Dns2: ''
HttpDev2DnsDhcpEnDis: Enabled
HttpDev2EnDis: Disabled
HttpDev2Gateway: ''
HttpDev2Interface: NIC.Slot.2-1-1
HttpDev2Ip: ''
HttpDev2Mask: ''
HttpDev2Protocol: IPv4
HttpDev2TlsMode: OneWay
HttpDev2Uri: ''
HttpDev2VlanEnDis: Disabled
HttpDev2VlanId: 1
HttpDev2VlanPriority: 0
HttpDev3DhcpEnDis: Enabled
HttpDev3Dns1: ''
HttpDev3Dns2: ''
HttpDev3DnsDhcpEnDis: Enabled
HttpDev3EnDis: Disabled
HttpDev3Gateway: ''
HttpDev3Interface: NIC.Slot.2-1-1
HttpDev3Ip: ''
HttpDev3Mask: ''
HttpDev3Protocol: IPv4
HttpDev3TlsMode: OneWay
HttpDev3Uri: ''
HttpDev3VlanEnDis: Disabled
HttpDev3VlanId: 1
HttpDev3VlanPriority: 0
HttpDev4DhcpEnDis: Enabled
HttpDev4Dns1: ''
HttpDev4Dns2: ''
HttpDev4DnsDhcpEnDis: Enabled
HttpDev4EnDis: Disabled
HttpDev4Gateway: ''
HttpDev4Interface: NIC.Slot.2-1-1
HttpDev4Ip: ''
HttpDev4Mask: ''
HttpDev4Protocol: IPv4
HttpDev4TlsMode: OneWay
HttpDev4Uri: ''
HttpDev4VlanEnDis: Disabled
HttpDev4VlanId: 1
HttpDev4VlanPriority: 0
IioPcieDataLinkFeatureExchange: Enabled
IioPciePtm: Auto
InBandManageabilityInterface: Enabled
InFieldScan: Disabled
IntelSgx: 'Off'
IntelTxt: 'Off'
InternalUsb: 'On'
IscsiDev1Con1Auth: None
IscsiDev1Con1ChapName: ''
IscsiDev1Con1ChapSecret: null
IscsiDev1Con1ChapType: OneWay
IscsiDev1Con1DhcpEnDis: Disabled
IscsiDev1Con1EnDis: Disabled
IscsiDev1Con1Gateway: ''
IscsiDev1Con1Interface: NIC.Slot.2-1-1
IscsiDev1Con1Ip: ''
IscsiDev1Con1IsId: ''
IscsiDev1Con1Lun: '0'
IscsiDev1Con1Mask: ''
IscsiDev1Con1Port: 3260
IscsiDev1Con1Protocol: IPv4
IscsiDev1Con1Retry: 3
IscsiDev1Con1RevChapName: ''
IscsiDev1Con1RevChapSecret: null
IscsiDev1Con1TargetIp: ''
IscsiDev1Con1TargetName: ''
IscsiDev1Con1TgtDhcpEnDis: Disabled
IscsiDev1Con1Timeout: 10000
IscsiDev1Con1VlanEnDis: Disabled
IscsiDev1Con1VlanId: 1
IscsiDev1Con1VlanPriority: 0
IscsiDev1Con2Auth: None
IscsiDev1Con2ChapName: ''
IscsiDev1Con2ChapSecret: null
IscsiDev1Con2ChapType: OneWay
IscsiDev1Con2DhcpEnDis: Disabled
IscsiDev1Con2EnDis: Disabled
IscsiDev1Con2Gateway: ''
IscsiDev1Con2Interface: NIC.Slot.2-1-1
IscsiDev1Con2Ip: ''
IscsiDev1Con2IsId: ''
IscsiDev1Con2Lun: '0'
IscsiDev1Con2Mask: ''
IscsiDev1Con2Port: 3260
IscsiDev1Con2Protocol: IPv4
IscsiDev1Con2Retry: 3
IscsiDev1Con2RevChapName: ''
IscsiDev1Con2RevChapSecret: null
IscsiDev1Con2TargetIp: ''
IscsiDev1Con2TargetName: ''
IscsiDev1Con2TgtDhcpEnDis: Disabled
IscsiDev1Con2Timeout: 10000
IscsiDev1Con2VlanEnDis: Disabled
IscsiDev1Con2VlanId: 1
IscsiDev1Con2VlanPriority: 0
IscsiDev1ConOrder: Con1Con2
IscsiDev1EnDis: Disabled
IscsiInitiatorName: ''
KernelDmaProtection: Disabled
KeySplit: '1'
LatencyOptimizedMode: Disabled
LlcPrefetch: Disabled
LmceEn: Enabled
MadtCoreEnumeration: RoundRobin
MaxPasswordAge: 60
MemFrequency: MaxPerf
MemOpMode: OptimizerMode
MemPatrolScrub: Standard
MemRefreshRate: 1x
MemTest: Disabled
MemoryEncryption: Disabled
MemoryMappedIOH: 56TB
MemoryTraining: MemoryTrainingFast
MonitorMwait: Enabled
NodeInterleave: Disabled
NumLock: 'On'
NumberOfPxeDevices: '4'
NvmeMode: NonRaid
NvmeofEnDis: Disabled
NvmeofHostDellNqn: nqn.1988-11.com.dell:PowerEdge.R670.8G14XB4
NvmeofHostId: 4C4C4544-0047-3110-8034-B8C04F584234
NvmeofHostSecurityPath: ''
NvmeofSubsys1Address: ''
NvmeofSubsys1Auth: None
NvmeofSubsys1ConInterface: NIC.Slot.2-1-1
NvmeofSubsys1ConProtocol: IPv4
NvmeofSubsys1ControllerId: 0
NvmeofSubsys1EnDis: Disabled
NvmeofSubsys1HostDhcp: Disabled
NvmeofSubsys1HostGateway: ''
NvmeofSubsys1HostIP: ''
NvmeofSubsys1HostMask: ''
NvmeofSubsys1InfoDhcp: Disabled
NvmeofSubsys1NameSpaceId: ''
NvmeofSubsys1Nqn: ''
NvmeofSubsys1Port: 4420
NvmeofSubsys1Retry: 3
NvmeofSubsys1Security: Disabled
NvmeofSubsys1SecurityKeyPath: ''
NvmeofSubsys1Timeout: 10000
NvmeofSubsys1TransType: TCP
NvmeofSubsys1VlanEnDis: Disabled
NvmeofSubsys1VlanId: 1
NvmeofSubsys1VlanPriority: 0
NvmeofSubsys2Address: ''
NvmeofSubsys2Auth: None
NvmeofSubsys2ConInterface: NIC.Slot.2-1-1
NvmeofSubsys2ConProtocol: IPv4
NvmeofSubsys2ControllerId: 0
NvmeofSubsys2EnDis: Disabled
NvmeofSubsys2HostDhcp: Disabled
NvmeofSubsys2HostGateway: ''
NvmeofSubsys2HostIP: ''
NvmeofSubsys2HostMask: ''
NvmeofSubsys2InfoDhcp: Disabled
NvmeofSubsys2NameSpaceId: ''
NvmeofSubsys2Nqn: ''
NvmeofSubsys2Port: 4420
NvmeofSubsys2Retry: 3
NvmeofSubsys2Security: Disabled
NvmeofSubsys2SecurityKeyPath: ''
NvmeofSubsys2Timeout: 10000
NvmeofSubsys2TransType: TCP
NvmeofSubsys2VlanEnDis: Disabled
NvmeofSubsys2VlanId: 1
NvmeofSubsys2VlanPriority: 0
NvmeofSubsys3Address: ''
NvmeofSubsys3Auth: None
NvmeofSubsys3ConInterface: NIC.Slot.2-1-1
NvmeofSubsys3ConProtocol: IPv4
NvmeofSubsys3ControllerId: 0
NvmeofSubsys3EnDis: Disabled
NvmeofSubsys3HostDhcp: Disabled
NvmeofSubsys3HostGateway: ''
NvmeofSubsys3HostIP: ''
NvmeofSubsys3HostMask: ''
NvmeofSubsys3InfoDhcp: Disabled
NvmeofSubsys3NameSpaceId: ''
NvmeofSubsys3Nqn: ''
NvmeofSubsys3Port: 4420
NvmeofSubsys3Retry: 3
NvmeofSubsys3Security: Disabled
NvmeofSubsys3SecurityKeyPath: ''
NvmeofSubsys3Timeout: 10000
NvmeofSubsys3TransType: TCP
NvmeofSubsys3VlanEnDis: Disabled
NvmeofSubsys3VlanId: 1
NvmeofSubsys3VlanPriority: 0
NvmeofSubsys4Address: ''
NvmeofSubsys4Auth: None
NvmeofSubsys4ConInterface: NIC.Slot.2-1-1
NvmeofSubsys4ConProtocol: IPv4
NvmeofSubsys4ControllerId: 0
NvmeofSubsys4EnDis: Disabled
NvmeofSubsys4HostDhcp: Disabled
NvmeofSubsys4HostGateway: ''
NvmeofSubsys4HostIP: ''
NvmeofSubsys4HostMask: ''
NvmeofSubsys4InfoDhcp: Disabled
NvmeofSubsys4NameSpaceId: ''
NvmeofSubsys4Nqn: ''
NvmeofSubsys4Port: 4420
NvmeofSubsys4Retry: 3
NvmeofSubsys4Security: Disabled
NvmeofSubsys4SecurityKeyPath: ''
NvmeofSubsys4Timeout: 10000
NvmeofSubsys4TransType: TCP
NvmeofSubsys4VlanEnDis: Disabled
NvmeofSubsys4VlanId: 1
NvmeofSubsys4VlanPriority: 0
OneTimeBootMode: Disabled
OneTimeUefiBootSeqDev: Optical.iDRACVirtual.1-1
OptimizerMode: Auto
PPROnUCE: Enabled
PagingPolicy: PagingAdaptive
PasswordHistory: 4
PasswordRotation: Disabled
PasswordStatus: Unlocked
PcieAspmL1: Enabled
PcieResizableBar: Enabled
PowerCycleRequest: None
PrebootDmaProtection: Disabled
Proc0Brand: Intel(R) Xeon(R) 6710E
Proc0Id: 6-AF-3
Proc0L2Cache: 64 MB
Proc0L3Cache: 96 MB
Proc0Microcode: '0x3000362'
Proc0NumCores: 64
Proc1Brand: Intel(R) Xeon(R) 6710E
Proc1Id: 6-AF-3
Proc1L2Cache: 64 MB
Proc1L3Cache: 96 MB
Proc1Microcode: '0x3000362'
Proc1NumCores: 64
ProcAdjCacheLine: Enabled
ProcAvxP1: Normal
ProcBusSpeed: 16 GT/s
ProcC1E: Enabled
ProcCStates: Enabled
ProcCoreSpeed: 2.40 GHz
ProcCores: All
ProcHwPrefetcher: Enabled
ProcIssSetting: IssOp1
ProcPwrPerf: SysDbpm
ProcTurboMode: Enabled
ProcVirtualization: Enabled
PwrButton: Enabled
PwrPerfSwitch: Enabled
PxeDev10Interface: NIC.Slot.2-1-1
PxeDev10Protocol: IPv4
PxeDev10VlanEnDis: Disabled
PxeDev10VlanId: 1
PxeDev10VlanPriority: 0
PxeDev11Interface: NIC.Slot.2-1-1
PxeDev11Protocol: IPv4
PxeDev11VlanEnDis: Disabled
PxeDev11VlanId: 1
PxeDev11VlanPriority: 0
PxeDev12Interface: NIC.Slot.2-1-1
PxeDev12Protocol: IPv4
PxeDev12VlanEnDis: Disabled
PxeDev12VlanId: 1
PxeDev12VlanPriority: 0
PxeDev13Interface: NIC.Slot.2-1-1
PxeDev13Protocol: IPv4
PxeDev13VlanEnDis: Disabled
PxeDev13VlanId: 1
PxeDev13VlanPriority: 0
PxeDev14Interface: NIC.Slot.2-1-1
PxeDev14Protocol: IPv4
PxeDev14VlanEnDis: Disabled
PxeDev14VlanId: 1
PxeDev14VlanPriority: 0
PxeDev15Interface: NIC.Slot.2-1-1
PxeDev15Protocol: IPv4
PxeDev15VlanEnDis: Disabled
PxeDev15VlanId: 1
PxeDev15VlanPriority: 0
PxeDev16Interface: NIC.Slot.2-1-1
PxeDev16Protocol: IPv4
PxeDev16VlanEnDis: Disabled
PxeDev16VlanId: 1
PxeDev16VlanPriority: 0
PxeDev1EnDis: Enabled
PxeDev1Interface: NIC.Slot.2-1-1
PxeDev1Protocol: IPv4
PxeDev1VlanEnDis: Disabled
PxeDev1VlanId: 1
PxeDev1VlanPriority: 0
PxeDev2EnDis: Disabled
PxeDev2Interface: NIC.Slot.2-1-1
PxeDev2Protocol: IPv4
PxeDev2VlanEnDis: Disabled
PxeDev2VlanId: 1
PxeDev2VlanPriority: 0
PxeDev3EnDis: Disabled
PxeDev3Interface: NIC.Slot.2-1-1
PxeDev3Protocol: IPv4
PxeDev3VlanEnDis: Disabled
PxeDev3VlanId: 1
PxeDev3VlanPriority: 0
PxeDev4EnDis: Disabled
PxeDev4Interface: NIC.Slot.2-1-1
PxeDev4Protocol: IPv4
PxeDev4VlanEnDis: Disabled
PxeDev4VlanId: 1
PxeDev4VlanPriority: 0
PxeDev5Interface: NIC.Slot.2-1-1
PxeDev5Protocol: IPv4
PxeDev5VlanEnDis: Disabled
PxeDev5VlanId: 1
PxeDev5VlanPriority: 0
PxeDev6Interface: NIC.Slot.2-1-1
PxeDev6Protocol: IPv4
PxeDev6VlanEnDis: Disabled
PxeDev6VlanId: 1
PxeDev6VlanPriority: 0
PxeDev7Interface: NIC.Slot.2-1-1
PxeDev7Protocol: IPv4
PxeDev7VlanEnDis: Disabled
PxeDev7VlanId: 1
PxeDev7VlanPriority: 0
PxeDev8Interface: NIC.Slot.2-1-1
PxeDev8Protocol: IPv4
PxeDev8VlanEnDis: Disabled
PxeDev8VlanId: 1
PxeDev8VlanPriority: 0
PxeDev9Interface: NIC.Slot.2-1-1
PxeDev9Protocol: IPv4
PxeDev9VlanEnDis: Disabled
PxeDev9VlanId: 1
PxeDev9VlanPriority: 0
RedundantOsBoot: Disabled
RedundantOsLocation: None
RedundantOsState: Visible
SHA256SetupPassword: ''
SHA256SetupPasswordSalt: ''
SHA256SystemPassword: ''
SHA256SystemPasswordSalt: ''
SecureBoot: Disabled
SecureBootMode: DeployedMode
SecureBootPolicy: Standard
SerialComm: 'Off'
SerialPortAddress: Com1
SetBootOrderDis: ''
SetBootOrderDis2: ''
SetBootOrderEn: NIC.PxeDevice.1-1,PCIeSSD.Slot.3-0,Optical.iDRACVirtual.1-1
SetBootOrderEn2: ''
SetBootOrderFqdd1: ''
SetBootOrderFqdd10: ''
SetBootOrderFqdd11: ''
SetBootOrderFqdd12: ''
SetBootOrderFqdd13: ''
SetBootOrderFqdd14: ''
SetBootOrderFqdd15: ''
SetBootOrderFqdd16: ''
SetBootOrderFqdd2: ''
SetBootOrderFqdd3: ''
SetBootOrderFqdd4: ''
SetBootOrderFqdd5: ''
SetBootOrderFqdd6: ''
SetBootOrderFqdd7: ''
SetBootOrderFqdd8: ''
SetBootOrderFqdd9: ''
SetupPassword: null
Slot1: Enabled
Slot1Bif: x16
Slot2: Enabled
Slot2Bif: x16
Slot3: Enabled
Slot4: Enabled
Slot4Bif: x16
Slot5: Enabled
SmmSecurityMitigation: Enabled
SnoopHldOff: Roll2KCycles
SriovGlobalEnable: Disabled
StrongPassword: Disabled
StrongPasswordMinLength: 8
SubNumaCluster: Disabled
SysMemSize: 512 GB
SysMemSpeed: 5600 MT/s
SysMemType: ECC DDR5
SysMfrContactInfo: www.dell.com
SysPassword: null
SysPrepClean: None
SysProfile: PerfPerWattOptimizedDapc
SystemBiosVersion: 1.3.2
SystemFpga2Version: 1.0.4
SystemFpgaVersion: 1.2.0
SystemManufacturer: Dell Inc.
SystemModelName: PowerEdge R670
SystemServiceTag: 8G14XB4
TimeZone: LOCAL
Tpm2Algorithm: SHA256
Tpm2Hierarchy: Enabled
TpmFirmware: 7.2.3.1
TpmInfo: 'Type: 2.0 NTC'
TpmPpiBypassClear: Disabled
TpmPpiBypassProvision: Disabled
TpmSecurity: 'On'
UefiCaCertScope: DeviceFirmwareAndOs
UefiComplianceVersion: '2.7'
UefiVariableAccess: Standard
UncoreFrequency: DynamicUFS
UpiPrefetch: Enabled
UsbManagedPort: 'On'
UsbPorts: AllOn
VideoMem: 16 MB
VirtualNuma: Disabled
WorkloadConfiguration: Balance
WorkloadProfile: NotConfigured
XptPrefetch: Enabled
HPE:
AMD:
ProLiant DL325 Gen10 Plus:
AccessControlService: Enabled
AcpiHpet: Enabled
AcpiRootBridgePxm: Enabled
AcpiSlit: Enabled
AdminEmail: ''
AdminName: ''
AdminOtherInfo: ''