Skip to content

Instantly share code, notes, and snippets.

@jasonrm
Last active March 13, 2022 17:13
Show Gist options
  • Save jasonrm/05a1dd6eedb9d65d64e3587340379b87 to your computer and use it in GitHub Desktop.
Save jasonrm/05a1dd6eedb9d65d64e3587340379b87 to your computer and use it in GitHub Desktop.
Dell PowerEdge DRAC 5 KVM
# Original : http://en.community.dell.com/support-forums/servers/f/956/t/18394689
# Archive : http://archive.is/8LkJs
I was also facing this issue, but had to jump some more hurdles:
- In the Java Control Panel, add https://<server IP/hostname> to the exception site list. (not related to this issue, but needs to be done though)
- In the Advanced tab (this is on windows) enable the console, so I could check what java version was being used. (I have 5 versions installed)
- Edit the mentioned java.security for the correct version, but, I had to make an additional change. I also had to alter the "jdk.certpath.disabledAlgorithms" parameter, and remove MD5 there. Hence, enable MD5 support.
- Sidenote: For "jdk.tls.disabledAlgorithms" the "DH keySize < 768" can stay disabled, yet "SSLv3, RC4, MD5withRSA" have to be enabled (so removed from the parameter)
- In chrome, make sure to re-download the .jnlp file. Might even have to restart the browser.
Thanks CreatedThisJustToSay for figuring this out...
# Re-enable MD5, SSLv3, RC4 and MD5withRSA so that DRAC 5 console works
JAVA_HOME="/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home"
sudo gsed -i "s%^jdk.certpath.disabledAlgorithms=.*$%jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024%g" "$JAVA_HOME/lib/security/java.security"
sudo gsed -i "s%^jdk.tls.disabledAlgorithms=.*$%jdk.tls.disabledAlgorithms=DH keySize < 768%g" "$JAVA_HOME/lib/security/java.security"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment