libredfish 0.2.0

A redfish library. Useful for querying server hardware from a BMC.
Documentation
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
{
  "@Redfish.Settings": {
    "@odata.context": "/redfish/v1/$metadata#Settings.Settings",
    "@odata.type": "#Settings.v1_3_1.Settings",
    "SettingsObject": {
      "@odata.id": "/redfish/v1/Managers/iDRAC.Embedded.1/Oem/Dell/DellAttributes/iDRAC.Embedded.1/Settings"
    },
    "SupportedApplyTimes": [
      "Immediate",
      "AtMaintenanceWindowStart"
    ]
  },
  "@odata.context": "/redfish/v1/$metadata#DellAttributes.DellAttributes",
  "@odata.id": "/redfish/v1/Managers/iDRAC.Embedded.1/Oem/Dell/DellAttributes/iDRAC.Embedded.1",
  "@odata.type": "#DellAttributes.v1_0_0.DellAttributes",
  "AttributeRegistry": "ManagerAttributeRegistry.v1_0_0",
  "Attributes": {
    "SupportAssist.1.DefaultProtocolPort": 0,
    "SupportAssist.1.HostOSProxyPort": 1,
    "CurrentNIC.1.DedicatedNICScanTime": 5,
    "CurrentNIC.1.MTU": 1500,
    "CurrentNIC.1.NumberOfLOM": 2,
    "CurrentNIC.1.SharedNICScanTime": 30,
    "CurrentNIC.1.VLanID": 1,
    "CurrentNIC.1.VLanPriority": 0,
    "CurrentIPv6.1.IPV6NumOfExtAddress": 0,
    "CurrentIPv6.1.PrefixLength": 64,
    "SysInfo.1.LocalConsoleLockOut": 1,
    "SysInfo.1.POSTCode": 126,
    "SysInfo.1.SystemRev": 0,
    "SysLog.1.Port": 514,
    "SysLog.1.PowerLogInterval": 5,
    "LDAP.1.Port": 636,
    "ADGroup.1.Privilege": 0,
    "ADGroup.2.Privilege": 0,
    "ADGroup.3.Privilege": 0,
    "ADGroup.4.Privilege": 0,
    "ADGroup.5.Privilege": 0,
    "ADGroup.6.Privilege": 0,
    "ADGroup.7.Privilege": 0,
    "ADGroup.8.Privilege": 0,
    "ADGroup.9.Privilege": 0,
    "ADGroup.10.Privilege": 0,
    "ADGroup.11.Privilege": 0,
    "ADGroup.12.Privilege": 0,
    "ADGroup.13.Privilege": 0,
    "ADGroup.14.Privilege": 0,
    "ADGroup.15.Privilege": 0,
    "ActiveDirectory.1.AuthTimeout": 120,
    "LDAPRoleGroup.1.Privilege": 0,
    "LDAPRoleGroup.2.Privilege": 0,
    "LDAPRoleGroup.3.Privilege": 0,
    "LDAPRoleGroup.4.Privilege": 0,
    "LDAPRoleGroup.5.Privilege": 0,
    "LDAPRoleGroup.6.Privilege": 0,
    "LDAPRoleGroup.7.Privilege": 0,
    "LDAPRoleGroup.8.Privilege": 0,
    "LDAPRoleGroup.9.Privilege": 0,
    "LDAPRoleGroup.10.Privilege": 0,
    "LDAPRoleGroup.11.Privilege": 0,
    "LDAPRoleGroup.12.Privilege": 0,
    "LDAPRoleGroup.13.Privilege": 0,
    "LDAPRoleGroup.14.Privilege": 0,
    "LDAPRoleGroup.15.Privilege": 0,
    "InventoryHash.1.HashCalculationInterval": 15,
    "Users.1.Privilege": 0,
    "Users.2.Privilege": 511,
    "Users.3.Privilege": 0,
    "Users.4.Privilege": 0,
    "Users.5.Privilege": 0,
    "Users.6.Privilege": 0,
    "Users.7.Privilege": 0,
    "Users.8.Privilege": 0,
    "Users.9.Privilege": 0,
    "Users.10.Privilege": 0,
    "Users.11.Privilege": 0,
    "Users.12.Privilege": 0,
    "Users.13.Privilege": 0,
    "Users.14.Privilege": 0,
    "Users.15.Privilege": 0,
    "Users.16.Privilege": 0,
    "RedfishEventing.1.DeliveryRetryAttempts": 3,
    "RedfishEventing.1.DeliveryRetryIntervalInSeconds": 5,
    "Time.1.DayLightOffset": 0,
    "Time.1.TimeZoneOffset": 0,
    "VirtualMedia.1.ActiveSessions": 0,
    "VirtualMedia.1.MaxSessions": 1,
    "IPBlocking.1.FailCount": 3,
    "IPBlocking.1.FailWindow": 60,
    "IPBlocking.1.PenaltyTime": 60,
    "SNMP.1.AlertPort": 162,
    "SNMP.1.DiscoveryPort": 161,
    "Security.1.PasswordMinimumLength": 0,
    "SSH.1.MaxSessions": 4,
    "SSH.1.Port": 22,
    "SSH.1.Timeout": 1800,
    "WebServer.1.HttpPort": 80,
    "WebServer.1.HttpsPort": 443,
    "WebServer.1.MaxNumberOfSessions": 8,
    "WebServer.1.Timeout": 1800,
    "Serial.1.HistorySize": 8192,
    "Serial.1.IdleTimeout": 300,
    "VirtualConsole.1.ActiveSessions": 0,
    "VirtualConsole.1.MaxSessions": 6,
    "VirtualConsole.1.Port": 5900,
    "VirtualConsole.1.Timeout": 1800,
    "Racadm.1.MaxSessions": 2,
    "Racadm.1.Timeout": 60,
    "IPMISOL.1.AccumulateInterval": 10,
    "IPMISOL.1.SendThreshold": 255,
    "SNMPTrapIPv4.1.DestinationNum": 1,
    "SNMPTrapIPv4.2.DestinationNum": 1,
    "SNMPTrapIPv4.3.DestinationNum": 1,
    "SNMPTrapIPv4.4.DestinationNum": 1,
    "SNMPTrapIPv6.1.DestinationNum": 1,
    "SNMPTrapIPv6.2.DestinationNum": 1,
    "SNMPTrapIPv6.3.DestinationNum": 1,
    "NIC.1.DNSRegisterInterval": 0,
    "NIC.1.DedicatedNICScanTime": 5,
    "NIC.1.MTU": 1500,
    "NIC.1.SharedNICScanTime": 30,
    "NIC.1.VLanID": 1,
    "NIC.1.VLanPriority": 0,
    "RemoteHosts.1.SMTPPort": 25,
    "SecurityCertificate.1.CertificateInstance": 1,
    "SecurityCertificate.2.CertificateInstance": 1,
    "ServiceModule.1.WatchdogResetTime": 480,
    "VNCServer.1.ActiveSessions": 0,
    "VNCServer.1.MaxSessions": 2,
    "VNCServer.1.Port": 5901,
    "VNCServer.1.Timeout": 300,
    "IPv6.1.PrefixLength": 64,
    "NTPConfigGroup.1.NTP1SecurityKeyNumber": 1,
    "NTPConfigGroup.1.NTP2SecurityKeyNumber": 1,
    "NTPConfigGroup.1.NTP3SecurityKeyNumber": 1,
    "NTPConfigGroup.1.NTPMaxDist": 16,
    "IPv6Static.1.PrefixLength": 64,
    "SNMPAlert.1.SNMPv3UserID": 0,
    "SNMPAlert.2.SNMPv3UserID": 0,
    "SNMPAlert.3.SNMPv3UserID": 0,
    "SNMPAlert.4.SNMPv3UserID": 0,
    "SNMPAlert.5.SNMPv3UserID": 0,
    "SNMPAlert.6.SNMPv3UserID": 0,
    "SNMPAlert.7.SNMPv3UserID": 0,
    "SNMPAlert.8.SNMPv3UserID": 0,
    "CurrentIPv4.1.DHCPEnable": "Enabled",
    "CurrentIPv4.1.DNSFromDHCP": "Disabled",
    "CurrentIPv4.1.Enable": "Enabled",
    "SupportAssist.1.DefaultProtocol": "CIFS",
    "SupportAssist.1.EmailOptIn": "Yes",
    "SupportAssist.1.EventBasedAutoCollection": "Disabled",
    "SupportAssist.1.FilterAutoCollections": "No",
    "SupportAssist.1.HostOSProxyConfigured": "No",
    "SupportAssist.1.NativeOSLogsCollectionSupported": "None",
    "SupportAssist.1.PreferredLanguage": "English",
    "SupportAssist.1.ProSupportPlusRecommendationsReport": "Disabled",
    "SupportAssist.1.RequestTechnicianForPartsDispatch": "No",
    "SupportAssist.1.SupportAssistEnableState": "Disabled",
    "CurrentNIC.1.ActiveNIC": "Dedicated",
    "CurrentNIC.1.ActiveSharedLOM": "None",
    "CurrentNIC.1.AutoDetect": "Disabled",
    "CurrentNIC.1.Autoneg": "Enabled",
    "CurrentNIC.1.DNSDomainFromDHCP": "Disabled",
    "CurrentNIC.1.DNSRegister": "Disabled",
    "CurrentNIC.1.Duplex": "Full",
    "CurrentNIC.1.Enable": "Enabled",
    "CurrentNIC.1.Failover": "None",
    "CurrentNIC.1.LinkStatus": "Yes",
    "CurrentNIC.1.PingEnable": "Enabled",
    "CurrentNIC.1.Speed": "1000",
    "CurrentNIC.1.VLanEnable": "Disabled",
    "CurrentNIC.1.VLanSetting": "Both Enable",
    "GroupManager.1.Status": "Disabled",
    "USB.1.ConfigurationXML": "Enabled while server has default credential settings only",
    "USB.1.ManagementPortMode": "iDRAC Direct Only",
    "USB.1.PortStatus": "Enabled",
    "CurrentIPv6.1.AddressGenerationMode": "StablePrivacy",
    "CurrentIPv6.1.AutoConfig": "Enabled",
    "CurrentIPv6.1.DNSFromDHCP6": "Disabled",
    "CurrentIPv6.1.Enable": "Enabled",
    "SwitchConnectionView.1.Enable": "Enabled",
    "Lockdown.1.SystemLockdown": "Enabled",
    "ServerBoot.1.BootOnce": "Enabled",
    "Autodiscovery.1.EnableIPChangeAnnounce": "Enabled",
    "Autodiscovery.1.EnableIPChangeAnnounceFromDHCP": "Enabled",
    "Autodiscovery.1.EnableIPChangeAnnounceFromUnicastDNS": "Enabled",
    "Autodiscovery.1.EnableIPChangeAnnounceFrommDNS": "Enabled",
    "Autodiscovery.1.SendTestAnnouncement": "Disabled",
    "Autodiscovery.1.UnsolicitedIPChangeAnnounceRate": "1 day",
    "PCIeVDM.1.Enable": "Enabled",
    "PlatformCapability.1.ASHRAECapable": "Enabled",
    "PlatformCapability.1.BackupRestoreCapable": "Disabled",
    "PlatformCapability.1.CUPSCapable": "Enabled",
    "PlatformCapability.1.FrontPanelCapable": "Enabled",
    "PlatformCapability.1.FrontPanelUSBCapable": "Enabled",
    "PlatformCapability.1.FrontPortUSBConfiguration": "Disabled",
    "PlatformCapability.1.GridCurrentCapCapable": "Enabled",
    "PlatformCapability.1.LCDCapable": "Enabled",
    "PlatformCapability.1.LiveScanCapable": "Enabled",
    "PlatformCapability.1.NicVLANCapable": "Both",
    "PlatformCapability.1.PMBUSCapablePSU": "Enabled",
    "PlatformCapability.1.PowerBudgetCapable": "Enabled",
    "PlatformCapability.1.PowerMonitoringCapable": "Enabled",
    "PlatformCapability.1.SerialDB9PCapable": "Disabled",
    "PlatformCapability.1.ServerAllocationCapable": "Disabled",
    "PlatformCapability.1.SystemCurrentCapCapable": "Enabled",
    "PlatformCapability.1.UserPowerCapBoundCapable": "Enabled",
    "PlatformCapability.1.UserPowerCapCapable": "Enabled",
    "PlatformCapability.1.WiFiCapable": "Enabled",
    "PlatformCapability.1.vFlashCapable": "Disabled",
    "SysLog.1.PowerLogEnable": "Disabled",
    "SysLog.1.SysLogEnable": "Disabled",
    "IntegratedDatacenter.1.DiscoveryEnable": "Disabled",
    "LDAP.1.CertValidationEnable": "Enabled",
    "LDAP.1.Enable": "Disabled",
    "LDAP.1.GroupAttributeIsDN": "Enabled",
    "ActiveDirectory.1.CertValidationEnable": "Disabled",
    "ActiveDirectory.1.DCLookupByUserDomain": "Enabled",
    "ActiveDirectory.1.DCLookupEnable": "Disabled",
    "ActiveDirectory.1.Enable": "Disabled",
    "ActiveDirectory.1.GCLookupEnable": "Disabled",
    "ActiveDirectory.1.SSOEnable": "Disabled",
    "ActiveDirectory.1.Schema": "Extended Schema",
    "SmartCard.1.SmartCardCRLEnable": "Disabled",
    "SmartCard.1.SmartCardLogonEnable": "Disabled",
    "Info.1.ServerGen": "15G",
    "Info.1.Type": "15G Monolithic",
    "IPMILan.1.AlertEnable": "Disabled",
    "IPMILan.1.Enable": "Enabled",
    "IPMILan.1.PrivLimit": "Administrator",
    "Update.1.FwUpdateTFTPEnable": "Enabled",
    "Users.1.AuthenticationProtocol": "SHA",
    "Users.1.Enable": "Disabled",
    "Users.1.IpmiLanPrivilege": "No Access",
    "Users.1.IpmiSerialPrivilege": "No Access",
    "Users.1.PrivacyProtocol": "AES",
    "Users.1.ProtocolEnable": "Disabled",
    "Users.1.Simple2FA": "Disabled",
    "Users.1.SolEnable": "Disabled",
    "Users.1.UseEmail": "Disabled",
    "Users.1.UseSMS": "Disabled",
    "Users.2.AuthenticationProtocol": "SHA",
    "Users.2.Enable": "Enabled",
    "Users.2.IpmiLanPrivilege": "Administrator",
    "Users.2.IpmiSerialPrivilege": "Administrator",
    "Users.2.PrivacyProtocol": "AES",
    "Users.2.ProtocolEnable": "Disabled",
    "Users.2.Simple2FA": "Disabled",
    "Users.2.SolEnable": "Enabled",
    "Users.2.UseEmail": "Disabled",
    "Users.2.UseSMS": "Disabled",
    "Users.3.AuthenticationProtocol": "SHA",
    "Users.3.Enable": "Disabled",
    "Users.3.IpmiLanPrivilege": "No Access",
    "Users.3.IpmiSerialPrivilege": "No Access",
    "Users.3.PrivacyProtocol": "AES",
    "Users.3.ProtocolEnable": "Disabled",
    "Users.3.Simple2FA": "Disabled",
    "Users.3.SolEnable": "Disabled",
    "Users.3.UseEmail": "Disabled",
    "Users.3.UseSMS": "Disabled",
    "Users.4.AuthenticationProtocol": "SHA",
    "Users.4.Enable": "Disabled",
    "Users.4.IpmiLanPrivilege": "No Access",
    "Users.4.IpmiSerialPrivilege": "No Access",
    "Users.4.PrivacyProtocol": "AES",
    "Users.4.ProtocolEnable": "Disabled",
    "Users.4.Simple2FA": "Disabled",
    "Users.4.SolEnable": "Disabled",
    "Users.4.UseEmail": "Disabled",
    "Users.4.UseSMS": "Disabled",
    "Users.5.AuthenticationProtocol": "SHA",
    "Users.5.Enable": "Disabled",
    "Users.5.IpmiLanPrivilege": "No Access",
    "Users.5.IpmiSerialPrivilege": "No Access",
    "Users.5.PrivacyProtocol": "AES",
    "Users.5.ProtocolEnable": "Disabled",
    "Users.5.Simple2FA": "Disabled",
    "Users.5.SolEnable": "Disabled",
    "Users.5.UseEmail": "Disabled",
    "Users.5.UseSMS": "Disabled",
    "Users.6.AuthenticationProtocol": "SHA",
    "Users.6.Enable": "Disabled",
    "Users.6.IpmiLanPrivilege": "No Access",
    "Users.6.IpmiSerialPrivilege": "No Access",
    "Users.6.PrivacyProtocol": "AES",
    "Users.6.ProtocolEnable": "Disabled",
    "Users.6.Simple2FA": "Disabled",
    "Users.6.SolEnable": "Disabled",
    "Users.6.UseEmail": "Disabled",
    "Users.6.UseSMS": "Disabled",
    "Users.7.AuthenticationProtocol": "SHA",
    "Users.7.Enable": "Disabled",
    "Users.7.IpmiLanPrivilege": "No Access",
    "Users.7.IpmiSerialPrivilege": "No Access",
    "Users.7.PrivacyProtocol": "AES",
    "Users.7.ProtocolEnable": "Disabled",
    "Users.7.Simple2FA": "Disabled",
    "Users.7.SolEnable": "Disabled",
    "Users.7.UseEmail": "Disabled",
    "Users.7.UseSMS": "Disabled",
    "Users.8.AuthenticationProtocol": "SHA",
    "Users.8.Enable": "Disabled",
    "Users.8.IpmiLanPrivilege": "No Access",
    "Users.8.IpmiSerialPrivilege": "No Access",
    "Users.8.PrivacyProtocol": "AES",
    "Users.8.ProtocolEnable": "Disabled",
    "Users.8.Simple2FA": "Disabled",
    "Users.8.SolEnable": "Disabled",
    "Users.8.UseEmail": "Disabled",
    "Users.8.UseSMS": "Disabled",
    "Users.9.AuthenticationProtocol": "SHA",
    "Users.9.Enable": "Disabled",
    "Users.9.IpmiLanPrivilege": "No Access",
    "Users.9.IpmiSerialPrivilege": "No Access",
    "Users.9.PrivacyProtocol": "AES",
    "Users.9.ProtocolEnable": "Disabled",
    "Users.9.Simple2FA": "Disabled",
    "Users.9.SolEnable": "Disabled",
    "Users.9.UseEmail": "Disabled",
    "Users.9.UseSMS": "Disabled",
    "Users.10.AuthenticationProtocol": "SHA",
    "Users.10.Enable": "Disabled",
    "Users.10.IpmiLanPrivilege": "No Access",
    "Users.10.IpmiSerialPrivilege": "No Access",
    "Users.10.PrivacyProtocol": "AES",
    "Users.10.ProtocolEnable": "Disabled",
    "Users.10.Simple2FA": "Disabled",
    "Users.10.SolEnable": "Disabled",
    "Users.10.UseEmail": "Disabled",
    "Users.10.UseSMS": "Disabled",
    "Users.11.AuthenticationProtocol": "SHA",
    "Users.11.Enable": "Disabled",
    "Users.11.IpmiLanPrivilege": "No Access",
    "Users.11.IpmiSerialPrivilege": "No Access",
    "Users.11.PrivacyProtocol": "AES",
    "Users.11.ProtocolEnable": "Disabled",
    "Users.11.Simple2FA": "Disabled",
    "Users.11.SolEnable": "Disabled",
    "Users.11.UseEmail": "Disabled",
    "Users.11.UseSMS": "Disabled",
    "Users.12.AuthenticationProtocol": "SHA",
    "Users.12.Enable": "Disabled",
    "Users.12.IpmiLanPrivilege": "No Access",
    "Users.12.IpmiSerialPrivilege": "No Access",
    "Users.12.PrivacyProtocol": "AES",
    "Users.12.ProtocolEnable": "Disabled",
    "Users.12.Simple2FA": "Disabled",
    "Users.12.SolEnable": "Disabled",
    "Users.12.UseEmail": "Disabled",
    "Users.12.UseSMS": "Disabled",
    "Users.13.AuthenticationProtocol": "SHA",
    "Users.13.Enable": "Disabled",
    "Users.13.IpmiLanPrivilege": "No Access",
    "Users.13.IpmiSerialPrivilege": "No Access",
    "Users.13.PrivacyProtocol": "AES",
    "Users.13.ProtocolEnable": "Disabled",
    "Users.13.Simple2FA": "Disabled",
    "Users.13.SolEnable": "Disabled",
    "Users.13.UseEmail": "Disabled",
    "Users.13.UseSMS": "Disabled",
    "Users.14.AuthenticationProtocol": "SHA",
    "Users.14.Enable": "Disabled",
    "Users.14.IpmiLanPrivilege": "No Access",
    "Users.14.IpmiSerialPrivilege": "No Access",
    "Users.14.PrivacyProtocol": "AES",
    "Users.14.ProtocolEnable": "Disabled",
    "Users.14.Simple2FA": "Disabled",
    "Users.14.SolEnable": "Disabled",
    "Users.14.UseEmail": "Disabled",
    "Users.14.UseSMS": "Disabled",
    "Users.15.AuthenticationProtocol": "SHA",
    "Users.15.Enable": "Disabled",
    "Users.15.IpmiLanPrivilege": "No Access",
    "Users.15.IpmiSerialPrivilege": "No Access",
    "Users.15.PrivacyProtocol": "AES",
    "Users.15.ProtocolEnable": "Disabled",
    "Users.15.Simple2FA": "Disabled",
    "Users.15.SolEnable": "Disabled",
    "Users.15.UseEmail": "Disabled",
    "Users.15.UseSMS": "Disabled",
    "Users.16.AuthenticationProtocol": "SHA",
    "Users.16.Enable": "Disabled",
    "Users.16.IpmiLanPrivilege": "No Access",
    "Users.16.IpmiSerialPrivilege": "No Access",
    "Users.16.PrivacyProtocol": "AES",
    "Users.16.ProtocolEnable": "Disabled",
    "Users.16.Simple2FA": "Disabled",
    "Users.16.SolEnable": "Disabled",
    "Users.16.UseEmail": "Disabled",
    "Users.16.UseSMS": "Disabled",
    "RedfishEventing.1.IgnoreCertificateErrors": "Yes",
    "Redfish.1.Enable": "Enabled",
    "ASRConfig.1.Enable": "Enabled",
    "LocalSecurity.1.LocalConfig": "Disabled",
    "LocalSecurity.1.PrebootConfig": "Disabled",
    "VirtualMedia.1.Attached": "AutoAttach",
    "VirtualMedia.1.BootOnce": "Disabled",
    "VirtualMedia.1.Enable": "Enabled",
    "VirtualMedia.1.EncryptEnable": "Enabled",
    "VirtualMedia.1.FloppyEmulation": "Disabled",
    "VirtualMedia.1.KeyEnable": "Disabled",
    "IPBlocking.1.BlockEnable": "Enabled",
    "IPBlocking.1.RangeEnable": "Disabled",
    "IPBlocking.1.RangeEnable2": "Disabled",
    "IPBlocking.1.RangeEnable3": "Disabled",
    "IPBlocking.1.RangeEnable4": "Disabled",
    "IPBlocking.1.RangeEnable5": "Disabled",
    "SNMP.1.AgentEnable": "Enabled",
    "SNMP.1.SNMPProtocol": "All",
    "SNMP.1.TrapFormat": "SNMPv1",
    "Security.1.CsrKeySize": "2048",
    "Security.1.FIPSMode": "Disabled",
    "Security.1.MinimumPasswordScore": "Weak Protection",
    "Security.1.PasswordRequireNumbers": "Disabled",
    "Security.1.PasswordRequireSymbols": "Disabled",
    "Security.1.PasswordRequireUpperCase": "Disabled",
    "SSH.1.Enable": "Enabled",
    "WebServer.1.BlockHTTPPort": "Disabled",
    "WebServer.1.Enable": "Enabled",
    "WebServer.1.HostHeaderCheck": "Enabled",
    "WebServer.1.Http2Enable": "Disabled",
    "WebServer.1.HttpsRedirection": "Enabled",
    "WebServer.1.LowerEncryptionBitLength": "Enabled",
    "WebServer.1.SSLEncryptionBitLength": "128-Bit or higher",
    "WebServer.1.TLSProtocol": "TLS 1.1 and Higher",
    "WebServer.1.TitleBarOption": "Auto",
    "EmailAlert.1.Enable": "Disabled",
    "EmailAlert.2.Enable": "Disabled",
    "EmailAlert.3.Enable": "Disabled",
    "EmailAlert.4.Enable": "Disabled",
    "Serial.1.BaudRate": "57600",
    "Serial.1.Enable": "Enabled",
    "Serial.1.FlowControl": "None",
    "Serial.1.NoAuth": "Disabled",
    "SerialRedirection.1.Enable": "Enabled",
    "VirtualConsole.1.AccessPrivilege": "Deny Access",
    "VirtualConsole.1.AttachState": "Auto-attach",
    "VirtualConsole.1.CloseUnusedPort": "Disabled",
    "VirtualConsole.1.Enable": "Enabled",
    "VirtualConsole.1.EncryptEnable": "Enabled",
    "VirtualConsole.1.LocalDisable": "Disabled",
    "VirtualConsole.1.LocalVideo": "Enabled",
    "VirtualConsole.1.PluginType": "eHTML5",
    "VirtualConsole.1.TimeoutEnable": "Disabled",
    "VirtualConsole.1.WebRedirect": "Disabled",
    "Racadm.1.Enable": "Enabled",
    "IPMISerial.1.BaudRate": "57600",
    "IPMISerial.1.ChanPrivLimit": "Administrator",
    "IPMISerial.1.ConnectionMode": "Basic",
    "IPMISerial.1.DeleteControl": "Disabled",
    "IPMISerial.1.EchoControl": "Enabled",
    "IPMISerial.1.FlowControl": "RTS/CTS",
    "IPMISerial.1.HandshakeControl": "Enabled",
    "IPMISerial.1.InputNewLineSeq": "Enter",
    "IPMISerial.1.LineEdit": "Enabled",
    "IPMISerial.1.NewLineSeq": "CR-LF",
    "IPMISOL.1.BaudRate": "115200",
    "IPMISOL.1.Enable": "Enabled",
    "IPMISOL.1.MinPrivilege": "Administrator",
    "OS-BMC.1.AdminState": "Disabled",
    "OS-BMC.1.PTCapability": "Capable",
    "OS-BMC.1.PTMode": "usb-p2p",
    "OS-BMC.1.UsbNicIpv4AddressSupport": "Enabled",
    "RFS.1.AttachMode": "Auto Attach",
    "RFS.1.Enable": "Disabled",
    "RFS.1.IgnoreCertWarning": "Yes",
    "RFS.1.MediaAttachState": "Detached",
    "RFS.1.Status": "Done",
    "RFS.1.WriteProtected": "Read Only",
    "SNMPTrapIPv4.1.State": "Disabled",
    "SNMPTrapIPv4.2.State": "Disabled",
    "SNMPTrapIPv4.3.State": "Disabled",
    "SNMPTrapIPv4.4.State": "Disabled",
    "SNMPTrapIPv6.1.State": "Disabled",
    "SNMPTrapIPv6.2.State": "Disabled",
    "SNMPTrapIPv6.3.State": "Disabled",
    "IPv4.1.DHCPEnable": "Enabled",
    "IPv4.1.DNSFromDHCP": "Disabled",
    "IPv4.1.Enable": "Enabled",
    "NIC.1.AutoConfig": "Disabled",
    "NIC.1.AutoDetect": "Disabled",
    "NIC.1.Autoneg": "Enabled",
    "NIC.1.DNSDomainFromDHCP": "Disabled",
    "NIC.1.DNSDomainNameFromDHCP": "Disabled",
    "NIC.1.DNSRegister": "Disabled",
    "NIC.1.DiscoveryLLDP": "Disabled",
    "NIC.1.Duplex": "Full",
    "NIC.1.Enable": "Enabled",
    "NIC.1.Failover": "None",
    "NIC.1.PingEnable": "Enabled",
    "NIC.1.PowerOnOCPSlot1InS5": "Off",
    "NIC.1.Selection": "Dedicated",
    "NIC.1.Speed": "1000",
    "NIC.1.TopologyLldp": "Disabled",
    "NIC.1.VLanEnable": "Disabled",
    "NIC.1.VLanPort": "Both",
    "RemoteHosts.1.ConnectionEncryption": "STARTTLS",
    "RemoteHosts.1.SMTPAuthentication": "Disabled",
    "SecurityCertificate.1.CertificateType": "WEBSERVER_SSL",
    "SecurityCertificate.2.CertificateType": "FACTORY_IDENTITY_CERT",
    "Telco-EdgeServer.1.AirFilterEventEnable": "Enabled",
    "SEKM.1.SupportStatus": "NotInstalled",
    "SecureDefaultPassword.1.ForceChangePassword": "False",
    "Logging.1.SELBufferType": "Circular",
    "Logging.1.SELOEMEventFilterEnable": "Disabled",
    "ServiceModule.1.ChipsetSATASupported": "Enabled",
    "ServiceModule.1.HostSNMPAlert": "Disabled",
    "ServiceModule.1.HostSNMPGet": "Disabled",
    "ServiceModule.1.HostSNMPOMSAAlert": "Disabled",
    "ServiceModule.1.LCLReplication": "Disabled",
    "ServiceModule.1.OMSAPresence": "NA",
    "ServiceModule.1.OSInfo": "Enabled",
    "ServiceModule.1.SSEventCorrelation": "Enabled",
    "ServiceModule.1.ServiceModuleEnable": "Enabled",
    "ServiceModule.1.ServiceModuleState": "Not Running",
    "ServiceModule.1.WMIInfo": "Disabled",
    "ServiceModule.1.WatchdogRecoveryAction": "None",
    "ServiceModule.1.WatchdogState": "Disabled",
    "ServiceModule.1.iDRACHardReset": "Enabled",
    "ServiceModule.1.iDRACSSOLauncher": "Enabled",
    "IOIDOpt.1.IOIDOptEnable": "Disabled",
    "IOIDOpt.1.InitiatorPersistencePolicy": "WarmReset, ColdReset, ACPowerLoss",
    "IOIDOpt.1.PersistencePolicyOnPartReplacement": "Enabled",
    "IOIDOpt.1.StorageTargetPersistencePolicy": "WarmReset, ColdReset, ACPowerLoss",
    "IOIDOpt.1.VirtualAddressPersistencePolicyAuxPwrd": "WarmReset, ColdReset",
    "IOIDOpt.1.VirtualAddressPersistencePolicyNonAuxPwrd": "WarmReset",
    "VNCServer.1.Enable": "Disabled",
    "VNCServer.1.LowerEncryptionBitLength": "Disabled",
    "VNCServer.1.SSLEncryptionBitLength": "Disabled",
    "AutoOSLockGroup.1.AutoOSLockState": "Enabled",
    "NICStatic.1.DNSDomainFromDHCP": "Disabled",
    "IPv4Static.1.DNSFromDHCP": "Disabled",
    "IPv6.1.AddressGenerationMode": "StablePrivacy",
    "IPv6.1.AddressState": "Active",
    "IPv6.1.AutoConfig": "Enabled",
    "IPv6.1.DNSFromDHCP6": "Disabled",
    "IPv6.1.Enable": "Enabled",
    "DefaultCredentialMitigationConfigGroup.1.DefaultCredentialMitigation": "Enabled",
    "NTPConfigGroup.1.NTP1SecurityType": "Disabled",
    "NTPConfigGroup.1.NTP2SecurityType": "Disabled",
    "NTPConfigGroup.1.NTP3SecurityType": "Disabled",
    "NTPConfigGroup.1.NTPEnable": "Disabled",
    "IPv6Static.1.DNSFromDHCP6": "Disabled",
    "SNMPAlert.1.State": "Disabled",
    "SNMPAlert.2.State": "Disabled",
    "SNMPAlert.3.State": "Disabled",
    "SNMPAlert.4.State": "Disabled",
    "SNMPAlert.5.State": "Disabled",
    "SNMPAlert.6.State": "Disabled",
    "SNMPAlert.7.State": "Disabled",
    "SNMPAlert.8.State": "Disabled",
    "CurrentIPv4.1.Address": "10.180.222.228",
    "CurrentIPv4.1.DNS1": "0.0.0.0",
    "CurrentIPv4.1.DNS2": "0.0.0.0",
    "CurrentIPv4.1.DupAddrDetected": "0.0.0.0",
    "CurrentIPv4.1.Gateway": "10.180.222.193",
    "CurrentIPv4.1.Netmask": "255.255.255.192",
    "SupportAssist.1.DefaultIPAddress": "",
    "SupportAssist.1.DefaultShareName": "",
    "SupportAssist.1.DefaultUserName": "",
    "SupportAssist.1.DefaultWorkgroupName": "",
    "SupportAssist.1.HostOSProxyAddress": "",
    "SupportAssist.1.HostOSProxyUserName": "",
    "SupportAssist.1.RegistrationID": "",
    "SupportAssist.1.iDRACFirstPowerUpDateTime": "Thu Jan 13 18:33:30 GMT 2022",
    "CurrentNIC.1.DNSDomainName": "",
    "CurrentNIC.1.DNSRacName": "idrac-JN9C5K3",
    "CurrentNIC.1.MACAddress": "b0:7b:25:f6:d1:d2",
    "CurrentNIC.1.MACAddress2": "b0:7b:25:f6:d1:d3",
    "CurrentNIC.1.MgmtIfaceName": "bond0",
    "GroupManager.1.GroupName": "",
    "GroupManager.1.GroupUUID": "",
    "CurrentIPv6.1.Address1": "::",
    "CurrentIPv6.1.Address10": "::",
    "CurrentIPv6.1.Address11": "::",
    "CurrentIPv6.1.Address12": "::",
    "CurrentIPv6.1.Address13": "::",
    "CurrentIPv6.1.Address14": "::",
    "CurrentIPv6.1.Address15": "::",
    "CurrentIPv6.1.Address2": "::",
    "CurrentIPv6.1.Address3": "::",
    "CurrentIPv6.1.Address4": "::",
    "CurrentIPv6.1.Address5": "::",
    "CurrentIPv6.1.Address6": "::",
    "CurrentIPv6.1.Address7": "::",
    "CurrentIPv6.1.Address8": "::",
    "CurrentIPv6.1.Address9": "::",
    "CurrentIPv6.1.DHCPv6Address": "::",
    "CurrentIPv6.1.DNS1": "::",
    "CurrentIPv6.1.DNS2": "::",
    "CurrentIPv6.1.DUID": "00:01:00:01:28:c5:24:6e:b0:7b:25:f6:d1:d2",
    "CurrentIPv6.1.Gateway": "::",
    "CurrentIPv6.1.LinkLocalAddress": "fe80::5458:292:23de:34a2",
    "GUI.1.SecurityPolicyMessage": "By accessing this computer, you confirm that such access complies with your organization's security policy.",
    "ServerBoot.1.FirstBootDevice": "Normal",
    "SysLog.1.Server1": "",
    "SysLog.1.Server2": "",
    "SysLog.1.Server3": "",
    "LDAP.1.BaseDN": "",
    "LDAP.1.BindDN": "",
    "LDAP.1.GroupAttribute": "",
    "LDAP.1.SearchFilter": "",
    "LDAP.1.Server": "",
    "LDAP.1.UserAttribute": "",
    "ADGroup.1.Domain": "",
    "ADGroup.1.Name": "",
    "ADGroup.2.Domain": "",
    "ADGroup.2.Name": "",
    "ADGroup.3.Domain": "",
    "ADGroup.3.Name": "",
    "ADGroup.4.Domain": "",
    "ADGroup.4.Name": "",
    "ADGroup.5.Domain": "",
    "ADGroup.5.Name": "",
    "ADGroup.6.Domain": "",
    "ADGroup.6.Name": "",
    "ADGroup.7.Domain": "",
    "ADGroup.7.Name": "",
    "ADGroup.8.Domain": "",
    "ADGroup.8.Name": "",
    "ADGroup.9.Domain": "",
    "ADGroup.9.Name": "",
    "ADGroup.10.Domain": "",
    "ADGroup.10.Name": "",
    "ADGroup.11.Domain": "",
    "ADGroup.11.Name": "",
    "ADGroup.12.Domain": "",
    "ADGroup.12.Name": "",
    "ADGroup.13.Domain": "",
    "ADGroup.13.Name": "",
    "ADGroup.14.Domain": "",
    "ADGroup.14.Name": "",
    "ADGroup.15.Domain": "",
    "ADGroup.15.Name": "",
    "ActiveDirectory.1.DCLookupDomainName": "",
    "ActiveDirectory.1.DomainController1": "",
    "ActiveDirectory.1.DomainController2": "",
    "ActiveDirectory.1.DomainController3": "",
    "ActiveDirectory.1.GCRootDomain": "",
    "ActiveDirectory.1.GlobalCatalog1": "",
    "ActiveDirectory.1.GlobalCatalog2": "",
    "ActiveDirectory.1.GlobalCatalog3": "",
    "ActiveDirectory.1.RacDomain": "",
    "ActiveDirectory.1.RacName": "",
    "UserDomain.1.Name": "",
    "UserDomain.2.Name": "",
    "UserDomain.3.Name": "",
    "UserDomain.4.Name": "",
    "UserDomain.5.Name": "",
    "UserDomain.6.Name": "",
    "UserDomain.7.Name": "",
    "UserDomain.8.Name": "",
    "UserDomain.9.Name": "",
    "UserDomain.10.Name": "",
    "UserDomain.11.Name": "",
    "UserDomain.12.Name": "",
    "UserDomain.13.Name": "",
    "UserDomain.14.Name": "",
    "UserDomain.15.Name": "",
    "UserDomain.16.Name": "",
    "UserDomain.17.Name": "",
    "UserDomain.18.Name": "",
    "UserDomain.19.Name": "",
    "UserDomain.20.Name": "",
    "UserDomain.21.Name": "",
    "UserDomain.22.Name": "",
    "UserDomain.23.Name": "",
    "UserDomain.24.Name": "",
    "UserDomain.25.Name": "",
    "UserDomain.26.Name": "",
    "UserDomain.27.Name": "",
    "UserDomain.28.Name": "",
    "UserDomain.29.Name": "",
    "UserDomain.30.Name": "",
    "UserDomain.31.Name": "",
    "UserDomain.32.Name": "",
    "UserDomain.33.Name": "",
    "UserDomain.34.Name": "",
    "UserDomain.35.Name": "",
    "UserDomain.36.Name": "",
    "UserDomain.37.Name": "",
    "UserDomain.38.Name": "",
    "UserDomain.39.Name": "",
    "UserDomain.40.Name": "",
    "LDAPRoleGroup.1.DN": "",
    "LDAPRoleGroup.2.DN": "",
    "LDAPRoleGroup.3.DN": "",
    "LDAPRoleGroup.4.DN": "",
    "LDAPRoleGroup.5.DN": "",
    "LDAPRoleGroup.6.DN": "",
    "LDAPRoleGroup.7.DN": "",
    "LDAPRoleGroup.8.DN": "",
    "LDAPRoleGroup.9.DN": "",
    "LDAPRoleGroup.10.DN": "",
    "LDAPRoleGroup.11.DN": "",
    "LDAPRoleGroup.12.DN": "",
    "LDAPRoleGroup.13.DN": "",
    "LDAPRoleGroup.14.DN": "",
    "LDAPRoleGroup.15.DN": "",
    "InventoryHash.1.HWInventoryHash": "",
    "InventoryHash.1.SWInventoryHash": "",
    "InventoryHash.1.SystemConfigHash": "8ad19d04160758e057763b6b1368cc87ef91e5ebf81bd6f76faae64f3c63ba88",
    "Info.1.Build": "01",
    "Info.1.CPLDVersion": "1.0.5",
    "Info.1.Description": "This system component provides a complete set of remote management functions for Dell PowerEdge Servers",
    "Info.1.HWRev": "0.01",
    "Info.1.IPMIVersion": "2.0",
    "Info.1.Name": "iDRAC",
    "Info.1.Product": "Integrated Dell Remote Access Controller",
    "Info.1.RollbackBuild": "30",
    "Info.1.RollbackVersion": "5.10.30.00",
    "Info.1.Version": "5.10.50.15",
    "IPMILan.1.CommunityName": "public",
    "IPMILan.1.EncryptionKey": "0000000000000000000000000000000000000000",
    "Update.1.FwUpdateIPAddr": "0.0.0.0",
    "Update.1.FwUpdatePath": "",
    "Users.1.EmailAddress": "",
    "Users.1.IPMIKey": "",
    "Users.1.MD5v3Key": "",
    "Users.1.SHA1v3Key": "",
    "Users.1.SHA256Password": "",
    "Users.1.SHA256PasswordSalt": "",
    "Users.1.SMSNumber": "",
    "Users.1.UserName": "",
    "Users.2.EmailAddress": "",
    "Users.2.IPMIKey": "A9759B88BA28C197F805848CE542C2F53934E5853698F99E6EA41B5BA35E799A",
    "Users.2.MD5v3Key": "AF1DD01A3CC9C3E389C8C5F409FB0A5C",
    "Users.2.SHA1v3Key": "850558116130EC3ADF9EDC5C2A16850A82BAC904",
    "Users.2.SHA256Password": "5928D709B2BBB2355049A1D8157EBA8FAF32BEA9243294A4B4599D98212D0005",
    "Users.2.SHA256PasswordSalt": "EC3D195A9E6BD3027716999648BAA549",
    "Users.2.SMSNumber": "",
    "Users.2.UserName": "root",
    "Users.3.EmailAddress": "",
    "Users.3.IPMIKey": "",
    "Users.3.MD5v3Key": "",
    "Users.3.SHA1v3Key": "",
    "Users.3.SHA256Password": "",
    "Users.3.SHA256PasswordSalt": "",
    "Users.3.SMSNumber": "",
    "Users.3.UserName": "",
    "Users.4.EmailAddress": "",
    "Users.4.IPMIKey": "",
    "Users.4.MD5v3Key": "",
    "Users.4.SHA1v3Key": "",
    "Users.4.SHA256Password": "",
    "Users.4.SHA256PasswordSalt": "",
    "Users.4.SMSNumber": "",
    "Users.4.UserName": "",
    "Users.5.EmailAddress": "",
    "Users.5.IPMIKey": "",
    "Users.5.MD5v3Key": "",
    "Users.5.SHA1v3Key": "",
    "Users.5.SHA256Password": "",
    "Users.5.SHA256PasswordSalt": "",
    "Users.5.SMSNumber": "",
    "Users.5.UserName": "",
    "Users.6.EmailAddress": "",
    "Users.6.IPMIKey": "",
    "Users.6.MD5v3Key": "",
    "Users.6.SHA1v3Key": "",
    "Users.6.SHA256Password": "",
    "Users.6.SHA256PasswordSalt": "",
    "Users.6.SMSNumber": "",
    "Users.6.UserName": "",
    "Users.7.EmailAddress": "",
    "Users.7.IPMIKey": "",
    "Users.7.MD5v3Key": "",
    "Users.7.SHA1v3Key": "",
    "Users.7.SHA256Password": "",
    "Users.7.SHA256PasswordSalt": "",
    "Users.7.SMSNumber": "",
    "Users.7.UserName": "",
    "Users.8.EmailAddress": "",
    "Users.8.IPMIKey": "",
    "Users.8.MD5v3Key": "",
    "Users.8.SHA1v3Key": "",
    "Users.8.SHA256Password": "",
    "Users.8.SHA256PasswordSalt": "",
    "Users.8.SMSNumber": "",
    "Users.8.UserName": "",
    "Users.9.EmailAddress": "",
    "Users.9.IPMIKey": "",
    "Users.9.MD5v3Key": "",
    "Users.9.SHA1v3Key": "",
    "Users.9.SHA256Password": "",
    "Users.9.SHA256PasswordSalt": "",
    "Users.9.SMSNumber": "",
    "Users.9.UserName": "",
    "Users.10.EmailAddress": "",
    "Users.10.IPMIKey": "",
    "Users.10.MD5v3Key": "",
    "Users.10.SHA1v3Key": "",
    "Users.10.SHA256Password": "",
    "Users.10.SHA256PasswordSalt": "",
    "Users.10.SMSNumber": "",
    "Users.10.UserName": "",
    "Users.11.EmailAddress": "",
    "Users.11.IPMIKey": "",
    "Users.11.MD5v3Key": "",
    "Users.11.SHA1v3Key": "",
    "Users.11.SHA256Password": "",
    "Users.11.SHA256PasswordSalt": "",
    "Users.11.SMSNumber": "",
    "Users.11.UserName": "",
    "Users.12.EmailAddress": "",
    "Users.12.IPMIKey": "",
    "Users.12.MD5v3Key": "",
    "Users.12.SHA1v3Key": "",
    "Users.12.SHA256Password": "",
    "Users.12.SHA256PasswordSalt": "",
    "Users.12.SMSNumber": "",
    "Users.12.UserName": "",
    "Users.13.EmailAddress": "",
    "Users.13.IPMIKey": "",
    "Users.13.MD5v3Key": "",
    "Users.13.SHA1v3Key": "",
    "Users.13.SHA256Password": "",
    "Users.13.SHA256PasswordSalt": "",
    "Users.13.SMSNumber": "",
    "Users.13.UserName": "",
    "Users.14.EmailAddress": "",
    "Users.14.IPMIKey": "",
    "Users.14.MD5v3Key": "",
    "Users.14.SHA1v3Key": "",
    "Users.14.SHA256Password": "",
    "Users.14.SHA256PasswordSalt": "",
    "Users.14.SMSNumber": "",
    "Users.14.UserName": "",
    "Users.15.EmailAddress": "",
    "Users.15.IPMIKey": "",
    "Users.15.MD5v3Key": "",
    "Users.15.SHA1v3Key": "",
    "Users.15.SHA256Password": "",
    "Users.15.SHA256PasswordSalt": "",
    "Users.15.SMSNumber": "",
    "Users.15.UserName": "",
    "Users.16.EmailAddress": "",
    "Users.16.IPMIKey": "",
    "Users.16.MD5v3Key": "",
    "Users.16.SHA1v3Key": "",
    "Users.16.SHA256Password": "",
    "Users.16.SHA256PasswordSalt": "",
    "Users.16.SMSNumber": "",
    "Users.16.UserName": "",
    "Time.1.Timezone": "CST6CDT",
    "IPBlocking.1.RangeAddr": "192.168.1.1",
    "IPBlocking.1.RangeAddr2": "192.168.1.1",
    "IPBlocking.1.RangeAddr3": "192.168.1.1",
    "IPBlocking.1.RangeAddr4": "192.168.1.1",
    "IPBlocking.1.RangeAddr5": "192.168.1.1",
    "IPBlocking.1.RangeMask": "255.255.255.0",
    "IPBlocking.1.RangeMask2": "255.255.255.0",
    "IPBlocking.1.RangeMask3": "255.255.255.0",
    "IPBlocking.1.RangeMask4": "255.255.255.0",
    "IPBlocking.1.RangeMask5": "255.255.255.0",
    "SNMP.1.AgentCommunity": "public",
    "SNMP.1.EngineID": "0x80001f88044a4e3943354b33",
    "Security.1.CsrCommonName": "",
    "Security.1.CsrCountryCode": "US",
    "Security.1.CsrEmailAddr": "",
    "Security.1.CsrLocalityName": "",
    "Security.1.CsrOrganizationName": "",
    "Security.1.CsrOrganizationUnit": "",
    "Security.1.CsrStateName": "",
    "Security.1.CsrSubjectAltName": "",
    "Security.1.FIPSVersion": "DELL OpenSSL FIPS Crypto Module v2.6",
    "Security.1.PasswordRequireRegex": "",
    "SSH.1.Banner": "",
    "WebServer.1.CustomCipherString": "",
    "WebServer.1.ManualDNSEntry": "",
    "WebServer.1.TitleBarOptionCustom": "",
    "EmailAlert.1.Address": "",
    "EmailAlert.1.CustomMsg": "",
    "EmailAlert.2.Address": "",
    "EmailAlert.2.CustomMsg": "",
    "EmailAlert.3.Address": "",
    "EmailAlert.3.CustomMsg": "",
    "EmailAlert.4.Address": "",
    "EmailAlert.4.CustomMsg": "",
    "Serial.1.Command": "",
    "SerialRedirection.1.QuitKey": "^\\",
    "OS-BMC.1.OsIpAddress": "0.0.0.0",
    "OS-BMC.1.UsbNicIpAddress": "169.254.1.1",
    "OS-BMC.1.UsbNicIpV6Address": "::",
    "OS-BMC.1.UsbNicULA": "fde1:53ba:e9a0:de11::1",
    "RFS.1.Image": "",
    "RFS.1.User": "",
    "SNMPTrapIPv4.1.DestIPv4Addr": "0.0.0.0",
    "SNMPTrapIPv4.2.DestIPv4Addr": "0.0.0.0",
    "SNMPTrapIPv4.3.DestIPv4Addr": "0.0.0.0",
    "SNMPTrapIPv4.4.DestIPv4Addr": "0.0.0.0",
    "SNMPTrapIPv6.1.DestIPv6Addr": "::",
    "SNMPTrapIPv6.2.DestIPv6Addr": "::",
    "SNMPTrapIPv6.3.DestIPv6Addr": "::",
    "IPv4.1.Address": "10.180.222.228",
    "IPv4.1.DNS1": "0.0.0.0",
    "IPv4.1.DNS2": "0.0.0.0",
    "IPv4.1.Gateway": "10.180.222.193",
    "IPv4.1.Netmask": "255.255.255.192",
    "NIC.1.DNSDomainName": "",
    "NIC.1.DNSRacName": "idrac-JN9C5K3",
    "NIC.1.MACAddress": "b0:7b:25:f6:d1:d2",
    "NIC.1.SwitchConnection": "b0:4f:13:31:f9:40",
    "NIC.1.SwitchPortConnection": "swp20",
    "RemoteHosts.1.MessageSubjectPrefix": "",
    "RemoteHosts.1.SMTPServerIPAddress": "0.0.0.0",
    "RemoteHosts.1.SMTPUserName": "",
    "RemoteHosts.1.SenderEmail": "",
    "SSHCrypto.1.Ciphers": "chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com",
    "SSHCrypto.1.HostKeyAlgorithms": "ssh-rsa,rsa-sha2-512,rsa-sha2-256,ecdsa-sha2-nistp256,ssh-ed25519",
    "SSHCrypto.1.KexAlgorithms": "curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,diffie-hellman-group14-sha256",
    "SSHCrypto.1.MACs": "umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512",
    "SecurityCertificate.1.CertValidFrom": "Sep  2 18:22:00 2021 GMT",
    "SecurityCertificate.1.CertValidTo": "Sep  3 18:22:00 2031 GMT",
    "SecurityCertificate.1.IssuerCommonName": "idrac-JN9C5K3",
    "SecurityCertificate.1.IssuerCountryCode": "US",
    "SecurityCertificate.1.IssuerLocality": "Round Rock",
    "SecurityCertificate.1.IssuerOrganization": "Dell Inc.",
    "SecurityCertificate.1.IssuerOrganizationalUnit": "Remote Access Group",
    "SecurityCertificate.1.IssuerState": "Texas",
    "SecurityCertificate.1.SerialNumber": "A69F8DA10D033D7A",
    "SecurityCertificate.1.SubjectCommonName": "idrac-JN9C5K3",
    "SecurityCertificate.1.SubjectCountryCode": "US",
    "SecurityCertificate.1.SubjectLocality": "Round Rock",
    "SecurityCertificate.1.SubjectOrganization": "Dell Inc.",
    "SecurityCertificate.1.SubjectOrganizationalUnit": "Remote Access Group",
    "SecurityCertificate.1.SubjectState": "Texas",
    "SecurityCertificate.2.CertValidFrom": "Sep  8 12:17:48 2021 GMT",
    "SecurityCertificate.2.CertValidTo": "Nov  7 12:17:48 2040 GMT",
    "SecurityCertificate.2.IssuerCommonName": "0IVC00-CE0C-105E-6826",
    "SecurityCertificate.2.IssuerCountryCode": "CN",
    "SecurityCertificate.2.IssuerLocality": "Shanghai",
    "SecurityCertificate.2.IssuerOrganization": "Inventec",
    "SecurityCertificate.2.IssuerOrganizationalUnit": "PROD",
    "SecurityCertificate.2.IssuerState": "Shanghai",
    "SecurityCertificate.2.SerialNumber": "030000000028B58A",
    "SecurityCertificate.2.SubjectCommonName": "b0:7b:25:f6:d1:d2",
    "SecurityCertificate.2.SubjectCountryCode": "US",
    "SecurityCertificate.2.SubjectLocality": "Round Rock",
    "SecurityCertificate.2.SubjectOrganization": "Dell EMC",
    "SecurityCertificate.2.SubjectOrganizationalUnit": "IDRAC",
    "SecurityCertificate.2.SubjectState": "Texas",
    "IPv6URL.1.URL": "",
    "ServiceModule.1.ServiceModuleVersion": "NA",
    "NICStatic.1.DNSDomainName": "",
    "IPv4Static.1.Address": "192.168.0.120",
    "IPv4Static.1.DNS1": "0.0.0.0",
    "IPv4Static.1.DNS2": "0.0.0.0",
    "IPv4Static.1.Gateway": "192.168.0.1",
    "IPv4Static.1.Netmask": "255.255.255.0",
    "IPv6.1.Address1": "::",
    "IPv6.1.Address10": "::",
    "IPv6.1.Address11": "::",
    "IPv6.1.Address12": "::",
    "IPv6.1.Address13": "::",
    "IPv6.1.Address14": "::",
    "IPv6.1.Address15": "::",
    "IPv6.1.Address2": "::",
    "IPv6.1.Address3": "::",
    "IPv6.1.Address4": "::",
    "IPv6.1.Address5": "::",
    "IPv6.1.Address6": "::",
    "IPv6.1.Address7": "::",
    "IPv6.1.Address8": "::",
    "IPv6.1.Address9": "::",
    "IPv6.1.DNS1": "::",
    "IPv6.1.DNS2": "::",
    "IPv6.1.DUID": "00:01:00:01:28:c5:24:6e:b0:7b:25:f6:d1:d2",
    "IPv6.1.Gateway": "::",
    "IPv6.1.LinkLocalAddress": "fe80::5458:292:23de:34a2",
    "NTPConfigGroup.1.NTP1": "",
    "NTPConfigGroup.1.NTP2": "",
    "NTPConfigGroup.1.NTP3": "",
    "IPv6Static.1.Address1": "::",
    "IPv6Static.1.DNS1": "::",
    "IPv6Static.1.DNS2": "::",
    "IPv6Static.1.Gateway": "::",
    "SNMPAlert.1.Destination": "",
    "SNMPAlert.1.SNMPv3Username": "",
    "SNMPAlert.2.Destination": "",
    "SNMPAlert.2.SNMPv3Username": "",
    "SNMPAlert.3.Destination": "",
    "SNMPAlert.3.SNMPv3Username": "",
    "SNMPAlert.4.Destination": "",
    "SNMPAlert.4.SNMPv3Username": "",
    "SNMPAlert.5.Destination": "",
    "SNMPAlert.5.SNMPv3Username": "",
    "SNMPAlert.6.Destination": "",
    "SNMPAlert.6.SNMPv3Username": "",
    "SNMPAlert.7.Destination": "",
    "SNMPAlert.7.SNMPv3Username": "",
    "SNMPAlert.8.Destination": "",
    "SNMPAlert.8.SNMPv3Username": "",
    "SupportAssist.1.DefaultPassword": null,
    "SupportAssist.1.HostOSProxyPassword": null,
    "USB.1.ZipPassword": null,
    "LDAP.1.BindPassword": null,
    "Users.1.Password": null,
    "Users.2.Password": null,
    "Users.3.Password": null,
    "Users.4.Password": null,
    "Users.5.Password": null,
    "Users.6.Password": null,
    "Users.7.Password": null,
    "Users.8.Password": null,
    "Users.9.Password": null,
    "Users.10.Password": null,
    "Users.11.Password": null,
    "Users.12.Password": null,
    "Users.13.Password": null,
    "Users.14.Password": null,
    "Users.15.Password": null,
    "Users.16.Password": null,
    "RFS.1.Password": null,
    "RemoteHosts.1.SMTPPassword": null,
    "VNCServer.1.Password": null,
    "NTPConfigGroup.1.NTP1SecurityKey": null,
    "NTPConfigGroup.1.NTP2SecurityKey": null,
    "NTPConfigGroup.1.NTP3SecurityKey": null
  },
  "Description": "This schema provides the oem attributes",
  "Id": "iDRACAttributes",
  "Name": "OEMAttributeRegistry"
}