File: freeipmi.conf.5.pre.in

package info (click to toggle)
freeipmi 1.4.11-1.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 21,952 kB
  • ctags: 18,990
  • sloc: ansic: 299,490; sh: 11,087; makefile: 1,958; perl: 1,078
file content (1286 lines) | stat: -rw-r--r-- 42,545 bytes parent folder | download | duplicates (2)
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
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
.TH FREEIPMI 5 "@ISODATE@" "FreeIPMI @PACKAGE_VERSION@" "Configuration"
.SH "NAME"
freeipmi.conf \- specify default values to FreeIPMI
.SH "DESCRIPTION"
The
.B FreeIPMI
configuration file can be used to set alternate default values to
many 
.B FreeIPMI
tools so values don't have to be configured on the command line.  This
allows users to avoid typing in a long list of command line options
everytime a command is executed.  It can also be used to hide
usernames, passwords, and other sensitive information from the
.B ps(1)
command.
.LP
Currently, the tools that can be configured with the configuration file are: 
.B bmc-device(8),
.B bmc-info(8),
.B bmc-watchdog(8),
.B ipmi-chassis(8),
.B ipmi-config(8),
.B ipmi-fru(8),
.B ipmi-oem(8),
.B ipmi-pet(8),
.B ipmi-raw(8),
.B ipmi-sel(8),
.B ipmi-sensors(8),
.B ipmiconsole(8), 
and
.B ipmipower(8).
.LP
By default, the configuration file is stored at
@FREEIPMI_CONFIG_FILE_DEFAULT@.  But users may select a different
configuration file at the command line with the --config-file option.
.LP
Values specified on the command line override the configuration 
values specified in the configuration file.
.SH "FORMAT"
The configuration options that can be specified in the configuration
file are listed below.  Each configuration option must be listed on a
separate line.  Arguments for an option are separated by any amount of
whitespace.  Multiple arguments are also separated by whitespace.
Comments can be marked by using the pound sign ("#") character, and
lines can be continued on the next using backslash ("\\").
.LP
Note that it is possible to list the username, password and other
potentially sensitive information in the configuration file.  If this
data is stored in a configuration file, system administrators should
limit access to this file.

.SH "GENERAL OPTIONS"
The following options are options generally available to all tools,
although specific options may be ignored by some.  (For example,
.B ipmiconsole(8)
and
.B ipmipower(8)
do not perform in-band communication, therefore they would ignore
in-band communication options.  Similarly
.B bmc-watchdog(8)
does not perform out-of-band communication, therefore it would ignore
all out-of-band options).
.TP
\fBdriver\-type\fR \fIIPMIDRIVER\fR
Specify the default driver type to use.  
.TP
\fBdisable\-auto\-probe\fR \fIENABLE|DISABLE\fR
Specify if IPMI devices should be probed for default settings.
.TP
\fBdriver\-address\fR \fIDRIVER-ADDRESS\fR
Specify the default in-band driver address to use.
.TP
\fBdriver\-device\fR \fIDEVICE\fR
Specify the default in-band driver device path to use.
.TP
\fBregister\-spacing\fR \fIREGISTER\-SPACING\fR
Specify the default in-band driver register spacing to use.
.TP
\fBtarget\-channel\-number\fR \fICHANNEL\-NUMBER\FR
Specify the default in-band driver target channel number.
.TP
\fBtarget\-slave\-address\fR \fISLAVE\-ADDRESS\FR
Specify the default in-band driver target slave address.
.TP
\fBusername\fR \fIUSERNAME\fR
Specify the default username to use.
.TP
\fBpassword\fR \fIPASSWORD\fR
Specify the default password to use.
.TP
\fBk_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use.  Prefix with '0x' to enter
the key in hex.
.TP
\fBsession\-timeout\fR \fIMILLISECONDS\fR
Specify the default session timeout length to use in milliseconds.
.TP
\fBretransmission\-timeout\fR \fIMILLISECONDS\fR
Specify the default retransmission timeout length to use in
milliseconds.
.TP
\fBauthentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use.  The following
authentication types are supported: NONE, STRAIGHT_PASSWORD_KEY, MD2,
and MD5.
.TP
\fBcipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use.  The following cipher suite
ids are supported: 0, 1, 2, 3, 6, 7, 8, 11, 12.
.TP
\fBprivilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use.  The following privilege
levels are supported: USER, OPERATOR, ADMIN.
.TP
\fBworkaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use.  Multiple workarounds can be
specified separated by whitespace.  Please see tool manpages for
details about available workarounds for each tool.  The following
workarounds are supported: assumeio, spinpoll, idzero, forcepermsg,
unexpectedauth, endianseq, noauthcodecheck, authcap, nochecksumcheck,
intel20, supermicro20, sun20, opensesspriv, integritycheckvalue,
assumemaxsdrrecordcount, solpayloadsize, solport, solstatus,
solchannelsupport, serialalertsdeferred, solpacketseq, skipchecks,
assumesystemevent, discretereading, ignorescanningdisabled,
assumebmcowner, ignoreauthcode, slowcommit, veryslowcommit,
solchannelassumelanchannel, ignorestateflag, malformedack, guidformat,
ipmiping.

.SH "SDR OPTIONS"
The following options are specific to tools that use the sensor 
data repository (SDR).  They will be ignored by all other tools.
.TP
\fBquiet\-cache\fR \fIENABLE|DISABLE\fR
Specify if cache creation/deletion information should not be output by default.
.TP
\fBsdr\-cache\-directory\fR \fIDIRECTORY\fR
Specify the default sdr cache directory to use.

.SH "TIME OPTIONS"
The following options are specific to tools that may output time
values.  They will be ignored by all other tools.
.TP
\fButc\-to\-localtime\fR \fIENABLE|DISABLE\fR 
Specify if time should be converted from assumed UTC to localtime by default.
.TP
\fBlocaltime\-to\-utc\fR \fIENABLE|DISABLE\fR 
Specify if time should be converted from localtime to UTC by default.
.TP
\fButc\-offset\-fR \fISECONDS\fR
Specify a default UTC offset to be added to timestamps.

.SH "HOSTRANGED OPTIONS"
The following options are specific to tools that support hostranged
output.  They will be ignored by all other tools.
.TP
\fBbuffer\-output\fR \fIENABLE|DISABLE\fR
Specify if hostranged output should be buffered by default.
.TP
\fBconsolidate\-output\fR \fIENABLE|DISABLE\fR
Specify if hostranged output should be consolidated by default.
.TP
\fBfanout\fR \fICOUNT\fR
Specify the default multiple host fanout to use.
.TP
\fBeliminate\fR \fIENABLE|DISABLE\fR
Specify if undetected hosts should be eliminated by default.
.TP
\fBalways\-prefix\fR \fIENABLE|DISABLE\fR
Specify if output should be always prefixed by default.

.SH "BMC-DEVICE OPTIONS"
The following options are specific to 
.B bmc-device(8).
They will be ignored by other tools.
.TP
\fBbmc\-device\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B bmc-device(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBbmc\-device\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B bmc-device(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBbmc\-device\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B bmc-device(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBbmc\-device\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B bmc-device(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBbmc\-device\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B bmc-device(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBbmc\-device\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B bmc-device(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBbmc\-device\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B bmc-device(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B bmc-device(8) 
manpage for available workarounds.

.SH "BMC-INFO OPTIONS"
The following options are specific to 
.B bmc-info(8).
They will be ignored by other tools.
.TP
\fBbmc\-info\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B bmc-info(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBbmc\-info\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B bmc-info(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBbmc\-info\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B bmc-info(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBbmc\-info\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B bmc-info(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBbmc\-info\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B bmc-info(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBbmc\-info\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B bmc-info(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBbmc\-info\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B bmc-info(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B bmc-info(8) 
manpage for available workarounds.
.TP
\fBbmc\-info\-interpret\-oem\-data\fR \fIENABLE|DISABLE\fR
Specify if
.B bmc-info
should attempt to interpret OEM data by default or not.

.SH "BMC-WATCHDOG OPTIONS"
The following options are specific to 
.B bmc-watchdog(8).
They will be ignored by other tools.
.TP
\fBbmc\-watchdog\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B bmc-watchdog(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B bmc-watchdog(8) 
manpage for available workarounds.
.TP
\fBbmc\-watchdog\-verbose\-logging\fR \fIENABLE|DISABLE\fR
Specify if logging will be verbose by default.
.TP
\fBbmc\-watchdog\-no\-logging\fR \fIENABLE|DISABLE\fR
Specify if logging will be disabled by default.

.SH "IPMI-CHASSIS OPTIONS"
The following options are specific to 
.B ipmi-chassis(8).
They will be ignored by other tools.
.TP
\fBipmi\-chassis\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B ipmi-chassis(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBipmi\-chassis\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B ipmi-chassis(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBipmi\-chassis\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B ipmi-chassis(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBipmi\-chassis\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B ipmi-chassis(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBipmi\-chassis\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B ipmi-chassis(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBipmi\-chassis\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B ipmi-chassis(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBipmi\-chassis\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B ipmi-chassis(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B ipmi-chassis(8) 
manpage for available workarounds.

.SH "IPMI-CONFIG OPTIONS"
The following options are specific to 
.B ipmi-config(8).
They will be ignored by other tools.
.TP
\fBipmi\-config\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B ipmi-config(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBipmi\-config\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B ipmi-config(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBipmi\-config\-k_g\fR \fIstr\fR
Specify the default IPMI key (K_g) to use for
.B ipmi-config(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBipmi\-config\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B ipmi-config(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBipmi\-config\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B ipmi-config(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBipmi\-config\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B ipmi-config(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBipmi\-config\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B ipmi-config(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B ipmi-config(8) 
manpage for available workarounds.
.TP
\fBipmi\-config\-verbose\-count\fR \fICOUNT\fR
Specify default verbose count to use for
.B ipmi-config(8).

.SH "IPMI-DCMI OPTIONS"
The following options are specific to 
.B ipmi-dcmi(8).
They will be ignored by other tools.
.TP
\fBipmi\-dcmi\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B ipmi-dcmi(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBipmi\-dcmi\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B ipmi-dcmi(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBipmi\-dcmi\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B ipmi-dcmi(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBipmi\-dcmi\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B ipmi-dcmi(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBipmi\-dcmi\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B ipmi-dcmi(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBipmi\-dcmi\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B ipmi-dcmi(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBipmi\-dcmi\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B ipmi-dcmi(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B ipmi-dcmi(8) 
manpage for available workarounds.
.TP
\fBipmi\-dcmi\-interpret\-oem\-data\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-dcmi
should attempt to interpret OEM data by default or not.

.SH "IPMI-FRU OPTIONS"
The following options are specific to 
.B ipmi-fru(8).
They will be ignored by other tools.
.TP
\fBipmi\-fru\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B ipmi-fru(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBipmi\-fru\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B ipmi-fru(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBipmi\-fru\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B ipmi-fru(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBipmi\-fru\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B ipmi-fru(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBipmi\-fru\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B ipmi-fru(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBipmi\-fru\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B ipmi-fru(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBipmi\-fru\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B ipmi-fru(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B ipmi-fru(8) 
manpage for available workarounds.
.TP
\fBipmi\-fru\-verbose\-count\fR \fICOUNT\fR
Specify default verbose count to use for
.B ipmi-fru(8).
.if 0 \{
.TP
\fBipmi\-fru\-skip\-checks\fR \fIENABLE|DISABLE\fR
Specify if checksum checks will be skipped by default.
\}
.TP
\fBipmi\-fru\-bridge\-fru\fR \fIENABLE|DISABLE\fR
Specify if FRU entries on other controllers should be read by default
or not.
.TP
\fBipmi\-fru\-interpret\-oem\-data\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-fru
should attempt to interpret OEM data by default or not.

.SH "IPMI-OEM OPTIONS"
The following options are specific to 
.B ipmi-oem(8).
They will be ignored by other tools.
.TP
\fBipmi\-oem\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B ipmi-oem(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBipmi\-oem\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B ipmi-oem(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBipmi\-oem\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B ipmi-oem(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBipmi\-oem\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B ipmi-oem(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBipmi\-oem\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B ipmi-oem(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBipmi\-oem\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B ipmi-oem(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBipmi\-oem\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B ipmi-oem(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B ipmi-oem(8) 
manpage for available workarounds.
.TP
\fBipmi\-oem\-verbose\-count\fR \fICOUNT\fR
Specify default verbose count to use for
.B ipmi-oem(8).

.SH "IPMI-PET OPTIONS"
The following options are specific to 
.B ipmi-pet(8).
They will be ignored by other tools.
.TP
\fBipmi\-pet\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B ipmi-pet(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBipmi\-pet\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B ipmi-pet(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBipmi\-pet\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B ipmi-pet(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBipmi\-pet\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B ipmi-pet(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBipmi\-pet\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B ipmi-pet(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBipmi\-pet\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B ipmi-pet(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBipmi\-pet\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B ipmi-pet(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B ipmi-pet(8) 
manpage for available workarounds.
.TP
\fBipmi\-pet\-verbose\-count\fR \fICOUNT\fR
Specify default verbose count to use for
.B ipmi-pet(8).
.TP
\fBipmi\-pet\-output\-event\-severity\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-pet
should output the event severity state by default.
.TP
\fBipmi\-pet\-output\-event\-state\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-pet
should output the event state state by default.
.TP
\fBipmi\-pet\-event\-state\-config\-file\fR \fIFILE\fR
Specify the default event state configuration file.
.TP
\fBipmi\-pet\-interpret\-oem\-data\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-pet
should attempt to interpret OEM data by default or not.
.TP
\fBipmi\-pet\-entity\-sensor\-names\fR \fIENABLE|DISABLE\fR
Specify if output of sensor names should include entity ids and
instances by default or not.
.TP
\fBipmi\-pet\-no\-sensor\-type\-output\fR \fIENABLE|DISABLE\fR
Specify if output of the sensor type should be output by default or
not.
.TP
\fBipmi\-pet\-comma\-separated\-output\fR \fIENABLE|DISABLE\fR
Specify if output should be comma separated by default or not.
.TP
\fBipmi\-pet\-no\-header\-output\fR \fIENABLE|DISABLE\fR
Specify if column headers should be output by default or not.
.TP
\fBipmi\-pet\-non\-abbreviated\-units\fR \fIENABLE|DISABLE\fR
Specify if output should have units abbreviated by default or not.


.SH "IPMI-RAW OPTIONS"
The following options are specific to 
.B ipmi-raw(8).
They will be ignored by other tools.
.TP
\fBipmi\-raw\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B ipmi-raw(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBipmi\-raw\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B ipmi-raw(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBipmi\-raw\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B ipmi-raw(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBipmi\-raw\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B ipmi-raw(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBipmi\-raw\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B ipmi-raw(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBipmi\-raw\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B ipmi-raw(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBipmi\-raw\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B ipmi-raw(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B ipmi-raw(8) 
manpage for available workarounds.

.SH "IPMI-SEL OPTIONS"
The following options are specific to 
.B ipmi-sel(8).
They will be ignored by other tools.
.TP
\fBipmi\-sel\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B ipmi-sel(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBipmi\-sel\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B ipmi-sel(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBipmi\-sel\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B ipmi-sel(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBipmi\-sel\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B ipmi-sel(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBipmi\-sel\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B ipmi-sel(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBipmi\-sel\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B ipmi-sel(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBipmi\-sel\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B ipmi-sel(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B ipmi-sel(8) 
manpage for available workarounds.
.TP
\fBipmi\-sel\-verbose\-count\fR \fICOUNT\fR
Specify default verbose count to use for
.B ipmi-sel(8).
.TP
\fBipmi\-sel\-types\fR \fITYPE-LIST\fR
Specify default types to show SEL events for.  Multiple types can
be specified separated by whitespace.  Users may specify sensor types
by string or by number (decimal or hex).  Please see 
.B ipmi-sel(8)
\fI\-\-list\-types\fR option to see possible string input types.
.TP
\fBipmi\-sel\-exclude\-types\fR \fSENSOR-TYPES-LIST\fR Specify
default sensor types to not show SEL events for.  Multiple sensor
types can be specified separated by whitespace.  Users may specify
sensor types by string or by number.  Please see
.B ipmi-sel(8)
\fI\-\-list\-types\fR option to see possible string
input types.
.TP
\fBipmi\-sel\-system\-event\-only\fR \fIENABLE|DISABLE\fR
Specify if output should only include system event records.
.TP
\fBipmi\-sel\-oem\-event\-only\fR \fIENABLE|DISABLE\fR
Specify if output should only include OEM event records.
.TP
\fBipmi\-sel\-output\-manufacturer\-id\fR \fIENABLE|DISABLE\fR
Specify if output of OEM event records should include manufacturer ID
by default or not.
.TP
\fBipmi\-sel\-output\-event\-state\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-sel
should output the event state state by default.
.TP
\fBipmi\-sel\-event\-state\-config\-file\fR \fIFILE\fR
Specify the default event state configuration file.
.if 0 \{
.TP
\fBipmi\-sel\-assume\-system\-event\-records\fR \fIENABLE|DISABLE\fR
Specify if system event records should be assumed when there are
invalid record types.
\}
.TP
\fBipmi\-sel\-interpret\-oem\-data\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-sel
should attempt to interpret OEM data by default or not.
.TP
\fBipmi\-sel\-output\-oem\-event\-strings\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-sel
should output OEM event strings by default or not.
.TP
\fBipmi\-sel\-entity\-sensor\-names\fR \fIENABLE|DISABLE\fR
Specify if output of sensor names should include entity ids and
instances by default or not.
.TP
\fBipmi\-sel\-no\-sensor\-type\-output\fR \fIENABLE|DISABLE\fR
Specify if output of the sensor type should be output by default or
not.
.TP
\fBipmi\-sel\-comma\-separated\-output\fR \fIENABLE|DISABLE\fR
Specify if output should be comma separated by default or not.
.TP
\fBipmi\-sel\-no\-header\-output\fR \fIENABLE|DISABLE\fR
Specify if column headers should be output by default or not.
.TP
\fBipmi\-sel\-non\-abbreviated\-units\fR \fIENABLE|DISABLE\fR
Specify if output should have units abbreviated by default or not.
.TP
\fBipmi\-sel\-legacy\-output\fR \fIENABLE|DISABLE\fR
Specify if output should be in legacy format by default or not.

.SH "IPMI-SENSORS OPTIONS"
The following options are specific to 
.B ipmi-sensors(8).
They will be ignored by other tools.
.TP
\fBipmi\-sensors\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B ipmi-sensors(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBipmi\-sensors\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B ipmi-sensors(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBipmi\-sensors\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B ipmi-sensors(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBipmi\-sensors\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B ipmi-sensors(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBipmi\-sensors\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B ipmi-sensors(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBipmi\-sensors\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B ipmi-sensors(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBipmi\-sensors\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B ipmi-sensors(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B ipmi-sensors(8) 
manpage for available workarounds.
.TP
\fBipmi\-sensors\-verbose\-count\fR \fICOUNT\fR
Specify default verbose count to use for
.B ipmi-sensors(8).
.TP
\fBipmi\-sensors\-quiet\-readings\fR \fIENABLE|DISABLE\fR
Specify if sensor reading values and thresholds should not be
output by default.
.TP
\fBipmi\-sensors\-record\-ids\fR \fRECORD-IDS-LIST\fR
Specify default record ids to show sensor outputs for.  Multiple record ids
can be specified separated by whitespace.
.TP
\fBipmi\-sensors\-exclude\-record\-ids\fR \fRECORD-IDS-LIST\fR
Specify default record ids to not show sensor outputs for.  Multiple
record ids can be specified separated by whitespace.
.TP
\fBipmi\-sensors\-types\fR \fITYPE-LIST\fR
Specify default types to show sensor outputs for.  Multiple types can
be specified separated by whitespace.  Users may specify sensor types
by string or by number (decimal or hex).  Please see 
.B ipmi-sensors(8)
\fI\-\-list\-types\fR option to see possible string input types.
.TP
\fBipmi\-sensors\-exclude\-types\fR \fSENSOR-TYPES-LIST\fR Specify
default sensor types to not show sensor outputs for.  Multiple sensor
types can be specified separated by whitespace.  Users may specify
sensor types by string or by number.  Please see
.B ipmi-sensors(8)
\fI\-\-list\-types\fR option to see possible string
input types.
.TP
\fBipmi\-sensors\-bridge\-sensors\fR \fIENABLE|DISABLE\fR
Specify if non-BMC sensors should be bridged by default or not.
.TP
\fBipmi\-sensors\-shared\-sensors\fR \fIENABLE|DISABLE\fR
Specify if shared sensors should be output by default or not.
.TP
\fBipmi\-sensors\-interpret\-oem\-data\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-sensors
should attempt to interpret OEM data by default or not.
.TP
\fBipmi\-sensors\-ignore\-not\-available\-sensors\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-sensors
should ignore not-available (i.e. N/A) sensors by default.
.TP
\fBipmi\-sensors\-ignore\-unrecognized\-events\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-sensors
should ignore unrecognized events (i.e. 'Unrecognized Event') in
sensors output by default.
.TP
\fBipmi\-sensors\-output\-event\-bitmask\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-sensors
should output event bitmasks instead of string representations by default.
.TP
\fBipmi\-sensors\-output\-sensor\-state\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-sensors
should output the sensor state by default.
.TP
\fBipmi\-sensors\-sensor\-state\-config\-file\fR \fIFILE\fR
Specify the default sensor state configuration file.
.TP
\fBipmi\-sensors\-entity\-sensor\-names\fR \fIENABLE|DISABLE\fR
Specify if output of sensor names should include entity ids and
instances by default or not.
.TP
\fBipmi\-sensors\-output\-sensor\-thresholds\fR \fIENABLE|DISABLE\fR
Specify if
.B ipmi-sensors
should output sensor thresholds by default.
.TP
\fBipmi\-sensors\-no\-sensor\-type\-output\fR \fIENABLE|DISABLE\fR
Specify if output of the sensor type should be output by default or
not.
.TP
\fBipmi\-sensors\-comma\-separated\-output\fR \fIENABLE|DISABLE\fR
Specify if output should be comma separated by default or not.
.TP
\fBipmi\-sensors\-no\-header\-output\fR \fIENABLE|DISABLE\fR
Specify if column headers should be output by default or not.
.TP
\fBipmi\-sensors\-non\-abbreviated\-units\fR \fIENABLE|DISABLE\fR
Specify if output should have units abbreviated by default or not.
.TP
\fBipmi\-sensors\-legacy\-output\fR \fIENABLE|DISABLE\fR
Specify if output should be in legacy format by default or not.
.TP
\fBipmi\-sensors\-ipmimonitoring\-legacy\-output\fR \fIENABLE|DISABLE\fR
Specify if output should be in
.B ipmimonitoring
legacy format by default or not.

.SH "IPMICONSOLE OPTIONS"
The following options are specific to 
.B ipmiconsole(8).
They will be ignored by other tools.
.TP
\fBipmiconsole\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B ipmiconsole(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBipmiconsole\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B ipmiconsole(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBipmiconsole\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B ipmiconsole(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBipmiconsole\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B ipmiconsole(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBipmiconsole\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B ipmiconsole(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBipmiconsole\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B ipmiconsole(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBipmiconsole\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B ipmiconsole(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B ipmiconsole(8) 
manpage for available workarounds.
.TP
\fBipmiconsole\-escape\-char\fR \fICHAR\fR
Specify the default escape character.
.TP
\fBipmiconsole\-dont\-steal\fR \fIENABLE|DISABLE\fR
Specify if in use SOL sessions should not be stolen by default.
.TP
\fBipmiconsole\-serial\-keepalive\fR \fIENABLE|DISABLE\fR
Specify if serial keepalive should be enabled by default.
.TP
\fBipmiconsole\-serial\-keepalive\-empty\fR \fIENABLE|DISABLE\fR
Specify if serial keepalive empty should be enabled by default.
.TP
\fBipmiconsole\-sol\-payload\-instance\fR \fINUM\fR
Specify the default SOL payload instance.
.TP
\fBipmiconsole\-deactivate\-all\-instances\fR \fIENABLE|DISABLE\fR
Specify if SOL deactivate should deactivate all instances by default.
.TP
\fBipmiconsole\-lock\-memory\fR \fIENABLE|DISABLE\fR
Specify if memory should be locked by default.

.SH "IPMIPOWER OPTIONS"
The following options are specific to
.B ipmipower(8).
They will be ignored by other tools.
.TP
\fBipmipower\-username\fR \fIUSERNAME\fR
Specify the default username to use for
.B ipmipower(8).
If specified, will override the general option 
\fBusername\fR 
above.
.TP
\fBipmipower\-password\fR \fIPASSWORD\fR
Specify the default password to use for
.B ipmipower(8).
If specified, will override the general option 
\fBpassword\fR 
above.
.TP
\fBipmipower\-k_g\fR \fIstr\fR
Specify the default BMC key (K_g) to use for
.B ipmipower(8).  
If specified, will override the general option 
\fBk_g\fR 
above.  Prefix with '0x' to enter the key in hex.
.TP
\fBipmipower\-authentication\-type\fR \fIAUTHENTICATION\-TYPE\fR
Specify the default authentication type to use for
.B ipmipower(8).  
If specified, will override the general option 
\fBauthentication-type\fR 
above.  The following authentication types are supported: NONE,
STRAIGHT_PASSWORD_KEY, MD2, and MD5.
.TP
\fBipmipower\-cipher\-suite\-id\fR \fICIPHER\-SUITE\-ID\fR
Specify the default cipher suite id to use for
.B ipmipower(8).
If specified, will override the general option 
\fBcipher-suite-id\fR 
above.  The following cipher suite ids are supported: 0, 1, 2, 3, 6,
7, 8, 11, 12.
.TP
\fBipmipower\-privilege\-level\fR \fIPRIVILEGE\-LEVEL\fR
Specify the default privilege type to use for
.B ipmipower(8).
If specified, will override the general option 
\fBprivilege-level\fR 
above.  The following privilege levels are supported: USER, OPERATOR,
ADMIN.
.TP
\fBipmipower\-workaround\-flags\fR \fIWORKAROUNDS\fR
Specify default workaround flags to use for
.B ipmipower(8).  
If specified, will override the general options
\fBworkaround\-flags\fR
above.  Multiple workarounds can be specified separated by whitespace.
Please see 
.B ipmipower(8) 
manpage for available workarounds.
.TP
\fBipmipower\-on\-if\-off\fR \fIENABLE|DISABLE\fR
Specify if on-if-off functionality is enabled or disabled by default.
.TP
\fBipmipower\-wait\-until\-on\fR \fIENABLE|DISABLE\fR
Specify if wait-until-on functionality is enabled or disabled by default.
.TP
\fBipmipower\-wait\-until\-off\fR \fIENABLE|DISABLE\fR
Specify if wait-until-off functionality is enabled or disabled by default.
.TP
\fBipmipower\-oem\-power\-type\fR \fIOEM\-POWER\-TYPE\fR
Specify OEM power type to be used.
.TP
\fBipmipower\-retransmission\-wait\-timeout\fR \fIMILLISECONDS\fR
Specify the default retransmission wait timeout length to use in
milliseconds.
.TP
\fBipmipower\-retransmission\-backoff\-count\fR \fICOUNT\fR
Specify the default retransmission backoff count to use for
retransmissions.
.TP
\fBipmipower\-ping\-interval\fR \fIMILLISECONDS\fR
Specify the default ping interval length to use in milliseconds.
.TP
\fBipmipower\-ping\-timeout\fR \fIMILLISECONDS\fR
Specify the default ping timeout length to use in milliseconds.
.TP
\fBipmipower\-ping\-packet\-count\fR \fICOUNT\fR
Specify the default ping packet count size to use.
.TP
\fBipmipower\-ping\-percent\fR \fIPERCENT\fR
Specify the default ping percent value to use.
.TP
\fBipmipower\-ping\-consec\-count\fR \fICOUNT\fR
Specify the default ping consecutive count value to use.

.SH "FILES"
@FREEIPMI_CONFIG_FILE_DEFAULT@

#include <@top_srcdir@/man/manpage-common-reporting-bugs.man>
.SH "COPYRIGHT"
Copyright \(co 2003-2014 FreeIPMI Core Team.  
#include <@top_srcdir@/man/manpage-common-gpl-freeipmi-text.man>

.SH "SEE ALSO"
freeipmi(7), bmc-device(8), bmc-info(8), bmc-watchdog(8),
ipmi-chassis(8), ipmi-config(8), ipmi-fru(8), ipmi-oem(8),
ipmi-raw(8), ipmi-sel(8), ipmi-sensors(8), ipmiconsole(8),
ipmipower(8)
#include <@top_srcdir@/man/manpage-common-homepage.man>