How to fix Java for iDRAC6 virtual console
How to fix Java for iDRAC6 virtual console
https://youtu.be/drhSo9Xl9M0
https://youtu.be/qxOk-AbIk9Y
Due to Java security policy, you need to add the iDRAC IP to the exception list and allow RC4 and MD5
1. Open Java control panel and click Security Tab, Click Edit site list, then add your iDRAC6 URL
2. Open and edit the java.security file in the Java \lib\security directory, you may have a different version.
C:\Program Files (x86)\Java\jre1.8.0_301\lib\security\
================
Find this line jdk.certpath.disabledAlgorithms and remove MD5,
jdk.certpath.disabledAlgorithms=MD2, MD5, SHA1 jdkCA & usage TLSServer, \
to
jdk.certpath.disabledAlgorithms=MD2, SHA1 jdkCA & usage TLSServer, \
=================
Find this line start jdk.tls.disabledAlgorithms remove RC4, and MD5withRSA, save it.
jdk.tls.disabledAlgorithms=SSLv3, TLSv1, TLSv1.1, RC4, DES, MD5withRSA, \
to
jdk.tls.disabledAlgorithms=SSLv3, TLSv1, TLSv1.1, DES, \
Comments
Post a Comment