Comment 1 for bug 2068502

Revision history for this message
Alessandro Marcolini (alemar99) wrote : Re: MAAS 3.4.2 keeps resetting Cipher Suite ID during commissioning

Hi Jeff,
I think that the problem should be related to the 30-maas-01-bmc-config commissioning script, because the default value for the `ipmi_cipher_suite_id` is set to 3 (source /src/metadataserver/builtin_scripts/commissioning_scripts/bmc_config.py).

To solve this you can verify and change the default value by doing the following:
```
# this should output 3
maas $PROFILE maas get-config name=maas_auto_ipmi_cipher_suite_id
# change the value to 17
maas $PROFILE maas set-config name=maas_auto_ipmi_cipher_suite_id value=17
# verify the change
maas $PROFILE maas get-config name=maas_auto_ipmi_cipher_suite_id
```