Posted On November 2, 2021

An Indication That Microsoft Office 365 Email Connector Doesn’t Like Large IP Blocks

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> An Indication That Microsoft Office 365 Email Connector Doesn’t Like Large IP Blocks

As we’ve advised our clients to configure their O365 to ‘whitelist’ or allow email relays from our email servers, there appears to be a problem when the clients attempt to configure email connectors with a large CIDR block such as /20.

 

Here’s another screenshot

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Quick Snippet to Remove Virtual Machine Snapshots in VMM

$vmNames=@( 'MACHINE1', 'MACHINE2' ) foreach($vmName in $vmNames){ $checkpoint = Get-SCVMCheckpoint -VM $vmName if($checkpoint){$checkpoint|%{Remove-SCVMCheckpoint -VMCheckpoint $_…

Resume All Guest VMs in a Clustered Hyper-V Environment

# resumeAllVms.ps1 # Significance: this script is useful in a Clustered Hyper-V environment # where…

Kubernetes: How to Set Node Affinity

Kubernetes pods' Quality of Service (QoS) can be controlled by setting node affinity. Here are…