To successfully migrate ESXi Kerberos authentication RC4 (0x17) to AES (0x12) encryption, perform the following steps to synchronize the host configuration with the Active Directory object.
/etc/kbr5.conf file in ESXi : To remove the RC4 encryption protocol/etc/krb5.conf" file to a safe place/etc/krb5.conf, removing the keyword "RC4-HMAC" from the lines configuring "default_tgs_enctypes", "default_tkt_enctypes", and "preferred_enctypes".Before: [libdefaults]
default_tgs_enctypes = AES256-CTS AES128-CTS RC4-HMAC
default_tkt_enctypes = AES256-CTS AES128-CTS RC4-HMAC
preferred_enctypes = AES256-CTS AES128-CTS RC4-HMAC
allow_weak_crypto = true
After: [libdefaults]
default_tgs_enctypes = AES256-CTS AES128-CTS
default_tkt_enctypes = AES256-CTS AES128-CTS
preferred_enctypes = AES256-CTS AES128-CTS
allow_weak_crypto = true
disable_modifications" value to "true"Before:[likewise]disable_modifications = falseversion = 1
After: [likewise]disable_modifications = trueversion = 1
Save the changes and perform a graceful reboot of the ESXi host using "reboot" command
Note: Configuration changes will not be saved if a force reboot of the ESXi host is performed using "reboot -f" command. If the issue persists, contact Broadcom support.