
Receive Connectors are used to control the flow of inbound messages into Exchange. With Exchange 2016 they are configured on servers with the Transport service (all mailbox servers) or with the Front End Transport service (all Client Access servers).
We can configure a Receive Connector in two different places. Difference is that the Front End Transport service does not queue any messages locally while the Transport service does. All the Receive Connectors required for internal mail flow are automatically created when a Client Access server or Mailbox server is installed.
Get Receive Connector
1 |
Get-ReceiveConnector "Default EXCHANGE SERVER" | Format-List |
Set default Receive Connector
1 |
Set-ReceiveConnector "Default CLOUDEXC01" -PermissionGroups AnonymousUsers, ExchangeServers, ExchangeLegacyServers |
Create Receive Connectors
Custom Receive Connectors are required for various reasons: to control which servers receive messages from a particular IP address; to configure special connector properties for messages received from a particular IP address such as allowing larger messages or more recipients per messages; or to allow servers, applications or devices such as printers to establish unauthenticated SMTP connections to Exchange in order to send e-mails.
To create Receive Connectors in Exchange 2016 we can use the Exchange Administration Center or the Exchange Management Shell. II’ll will be using the Exchange Management Shell to create a Receive Connector that:
- Is associated with the Mailbox server called EXCHANGE01
- Listens for incoming SMTP connections on the IP address 192.168.1.45 and port 2526
- Accepts incoming SMTP connections only from the IP range of 192.168.1.50 to 192.168.1.60
- Accepts e-mails of a size up to 50MB
1 |
New-ReceiveConnector -Name "Techwire Connector" -Server EXCHANGE01 -Usage Custom -Bindings 192.168.1.47:2526 -RemoteIPRanges 192.168.1.50-192.168.1.60 -MaxMessageSize 50MB |
If the Exchange server is multi-role and has the Client Access and Mailbox server roles our example would become:
1 |
New-ReceiveConnector -Name "Techwire Connector" -Server CLOUDEXC01 -Usage Custom -Bindings 192.168.1.47:2526 -RemoteIPRanges 192.168.1.50-192.168.1.60 -MaxMessageSize 50MB -TransportRole HubTransport |
Thank you for spending some time at my site and in my blog. I hope you come to visit again soon 😉
Be the first to comment