Settings | Sign in | Sign up

There are currently 2 posts.

Ubuntu22.04和Fedora42自帶的apache伺服器可啟用TLS1.0。

Floor 1 巨大八爪鱼 6/13/25 10:25

重點在於openssl3的@SECLEVEL=0。

開啟方法:
[ubuntu22.04系統](openssl版本3.0.2)
/etc/apache2/mods-enabled/ssl.conf
SSLCipherSuite HIGH:MEDIUM:!MD5:!RC4:@SECLEVEL=0
SSLProtocol all -SSLv3

 

[fedora42系統](openssl版本3.2.4)
/etc/httpd/conf.d/ssl.conf
SSLProtocol all -SSLv3
SSLCipherSuite HIGH:MEDIUM:!MD5:!RC4:@SECLEVEL=0

 

apache伺服器啟用TLS1.0後,裝了one core api 4.0.1的xp系統的ie6瀏覽器可訪問https(ie6需要在internet選項中啟用tls1.0)。
Ubuntu22.04和Fedora42自帶的apache伺服器不支持SSL3.0,不支持RC4和3DES算法,所以未安裝one core api 4.0.1的xp系統的ie6是無法訪問https的。
如果想要讓https完全支持原版xp系統的ie6和ie8,包括未啟用tls1.0的ie6,必須自己源碼編譯apache和openssl。

Floor 2 巨大八爪鱼 6/13/25 10:36

在phpinfo裡面的$_SERVER['SSL_CIPHER']欄目上可以看到,ie6訪問ubuntu22.04的apache的https用的是AES128-SHA算法,ie6訪問fedora42的apache的https用的是AES256-SHA算法。

Content converter:

Reply the post
Content:
User: You are currently anonymous.
Captcha:
Unclear? Try another one.