请给我一些建议,因为我把所有的头发都拔掉了。
我有 Exchange 2016,我想将一份正式签署的证书分配给 IMAP/S 端口 993/tcp 和 SMTP/S 端口 465/tcp 。我尝试了几个配置选项,但检查端口(通过使用nmap
)两个端口都显示了完全不同的证书。我现在不明白管理 Exchange 证书的整个概念。
Exchange 上的 IMAP 设置
[PS] C:\Windows\system32>Get-ImapSettings | fl
RunspaceId : 669149f3-c8f4-43af-b80c-3019ec26bd08
ProtocolName : IMAP4
Name : 1
MaxCommandSize : 10240
ShowHiddenFoldersEnabled : False
UnencryptedOrTLSBindings : {[::]:143, 0.0.0.0:143}
SSLBindings : {[::]:993, 0.0.0.0:993}
InternalConnectionSettings : {mail.doamin.il:143:TLS, mail.domain.il:993:SSL}
ExternalConnectionSettings : {mail.domain.il:993:SSL, mail.domain.il:143:TLS}
X509CertificateName : mail.domain.il
Banner : The Microsoft Exchange IMAP4 service is ready.
LoginType : SecureLogin
AuthenticatedConnectionTimeout : 00:30:00
PreAuthenticatedConnectionTimeout : 00:01:00
MaxConnections : 2147483647
MaxConnectionFromSingleIP : 2147483647
MaxConnectionsPerUser : 16
MessageRetrievalMimeFormat : BestBodyFormat
ProxyTargetPort : 1993
CalendarItemRetrievalOption : iCalendar
OwaServerUrl :
EnableExactRFC822Size : False
LiveIdBasicAuthReplacement : False
SuppressReadReceipt : False
ProtocolLogEnabled : False
EnforceCertificateErrors : False
LogFileLocation : C:\Program Files\Microsoft\Exchange Server\V15\Logging\Imap4
LogFileRollOverSettings : Hourly
LogPerFileSizeQuota : 0 B (0 bytes)
ExtendedProtectionPolicy : None
EnableGSSAPIAndNTLMAuth : True
Server : SERVER
AdminDisplayName :
ExchangeVersion : 0.10 (14.0.100.0)
DistinguishedName : CN=1,CN=IMAP4,CN=Protocols,CN=SERVER,CN=Servers,CN=Exchange Administrative Group (FYDIBO
HF23SPDLT),CN=Administrative Groups,CN=SERVERADS,CN=Microsoft Exchange,CN=Services,CN=Configu
ration, DC=domain,DC=ils
Identity : SERVER\1
Guid : c2bfe9aa-f252-419a-910d-62687592dc34
ObjectCategory : domain.ils/Configuration/Schema/ms-Exch-Protocol-Cfg-IMAP-Server
ObjectClass : {top, protocolCfg, protocolCfgIMAP, protocolCfgIMAPServer}
WhenChanged : 2024. 01. 23. 20:56:48
WhenCreated : 2021. 04. 29. 16:12:26
WhenChangedUTC : 2024. 01. 23. 19:56:48
WhenCreatedUTC : 2021. 04. 29. 14:12:26
OrganizationId :
Id : SERVER\1
OriginatingServer : DC.domain.ils
IsValid : True
ObjectState : Unchanged
的结果nmap
。
[root@revenant ~]# nmap -p 993 --script ssl-cert mail.domain.il
Starting Nmap 7.92 ( https://nmap.org ) at 2024-01-23 22:09 CET
Nmap scan report for mail.domain.il (192.168.99.31)
Host is up (0.00027s latency).
PORT STATE SERVICE
993/tcp open imaps
| ssl-cert: Subject: commonName=*.domain.il/organizationName=IL Inc./stateOrProvinceName=F/countryName=IL
| Subject Alternative Name: DNS:*.domain.il
| Issuer: commonName=internal-ca/organizationName=IL Inc./stateOrProvinceName=F/countryName=IL
| Public Key type: rsa
| Public Key bits: 2048
| Signature Algorithm: sha256WithRSAEncryption
| Not valid before: 2023-06-15T20:20:44
| Not valid after: 2028-06-13T20:20:44
| MD5: ffc2 d46a f66e b7ee 8f2c 0468 4f39 f01e
|_SHA-1: 626d bfac d38c db8f 5ea9 d328 c42c d94a d9fe 09c1
MAC Address: 00:0C:29:0D:B3:C3 (VMware)
Nmap done: 1 IP address (1 host up) scanned in 0.47 seconds
澄清一下,我有两个证书。mail.domain.il 由 Truster Root Issuer 签名,而 *.domain.il 由我的内部 CA 签名。
Exchange OWA 在 IIS 中配置了 mail.domain.il 并且运行良好,但是 EXCHANGE 服务不想接收它,或者我不知道服务如何决定它们运行。
Enable-ExchangeCertificate -Server SERVER -Thumbprint 1KJ24JH12G41JKG41J23H4G12JKL3G -Services IIS,SMTP,POP,IMAP
用过好几次了。我真的什么都试过了,但还是没能成功。
请帮忙。
答案1
您可以在 Exchange 管理中心 (EAC) 或 Exchange 命令行管理程序中将证书分配给服务。将证书分配给服务后,您将无法删除该分配。如果您不再希望将证书用于特定服务,则需要将另一个证书分配给该服务,然后删除您不想使用的证书。
需要注意的是,您不应将通配符证书分配给 IMAP4 或 POP3 服务。相反,请使用 Set-ImapSettings cmdlet 配置客户端用于连接到 IMAP4 服务的完全限定域名 (FQDN),并使用 Set-PopSettings cmdlet 配置客户端用于连接到 POP3 服务的 FQDN。