IPBlockListProvider 与 IPAllowListProvider

IPBlockListProvider 与 IPAllowListProvider

我在 Echange 2016 中使用 Spamhaus SBL 和 Spamcop 作为 RBL 提供商,效果很好。但是,有些连接被阻止了,这其实不应该。为了防止误报,我继续配置 IP 允许列表提供商(具体来说是 list.dnswl.org)。

一切似乎都配置正确,使用 Test-IPAllowListProvider 返回“错误”阻止的 IP 地址的匹配项。然而,Exchange 仍然阻止这些连接,因为它们出现在 RBL 上。

IPAllowListProvider 和 IPBBlockListProvider 在连接过滤中如何交互?我是否可以配置 Exchange 以接受来自出现在 DNS 白名单中的服务器的电子邮件,即使它们也出现在黑名单中?

答案1

您可能需要运行以下 Exchange cmdlet:

Get-IPAllowListProvidersConfig | Format-List *Enabled
Get-IPAllowListConfig | Format-List *MailEnabled

确保您确实已启用白名单提供商。

假设看起来不错,尝试一下

Get-IPBlocklistProvider
Get-IPAllowListProvider

查看优先级。如果您的黑名单提供程序的优先级高于白名单提供程序的优先级,则可能是您的问题。如果您尚未将某些内容设置为优先级 1,请尝试

Set-IPAllowListProvider list.dnswl.org -Priority 1

(假设这就是您所称呼的提供商)并看看是否有帮助。

相关内容