<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Exchange Server Pro &#187; Receive Connector</title>
	<atom:link href="http://exchangeserverpro.com/tag/receive-connector/feed" rel="self" type="application/rss+xml" />
	<link>http://exchangeserverpro.com</link>
	<description>Microsoft Exchange Server News - Tips - Tutorials</description>
	<lastBuildDate>Wed, 23 May 2012 11:55:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Publish POP3 Client Settings to Users with Exchange 2010 SP1</title>
		<link>http://exchangeserverpro.com/exchange-2010-publish-pop3-client-settings</link>
		<comments>http://exchangeserverpro.com/exchange-2010-publish-pop3-client-settings#comments</comments>
		<pubDate>Fri, 18 Mar 2011 12:37:06 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Client Access]]></category>
		<category><![CDATA[Email Client]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Hub Transport]]></category>
		<category><![CDATA[pop3]]></category>
		<category><![CDATA[Receive Connector]]></category>
		<category><![CDATA[Settings]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=3117</guid>
		<description><![CDATA[How to publish Exchange 2010 POP3 and SMTP server settings so that end users know how to configure their email client.]]></description>
			<content:encoded><![CDATA[<p>When you are <a href="http://exchangeserverpro.com/exchange-server-2010-pop3">deploying POP3 for Exchange Server 2010</a> it is useful to have a way to publish the correct server settings that users should configure their email client to use.  Exchange Server 2010 SP1 has a neat way of publishing this information in the Exchange Control Panel (in OWA).</p>
<p>The first thing you&#8217;ll need to know is the POP and SMTP server settings that you want clients to use.  In this example we&#8217;ll use these server names:</p>
<ul>
<li>pop.exchangeserverpro.net</li>
<li>smtp.exchangeserverpro.net</li>
</ul>
<p>These names will both need public DNS records created on your DNS servers.  The POP3 server name (pop.exchangeserverpro.net in this case) should also have a valid <a href="http://exchangeserverpro.com/configure-an-ssl-certificate-for-exchange-server-2010">SSL certificate</a> installed and enabled for POP with a matching name so that you can use <a href="http://exchangeserverpro.com/exchange-server-2010-pop3-configuring-securing-pop-client-access">secure POP3 access</a>.</p>
<p>Checking the Client Access server in this example I can see that the X509 certificate name configured for POP3 is not the correct one I want.</p>
<pre>[PS] C:\&gt;Get-PopSettings | fl x*

X509CertificateName : esp-ho-ex2010a</pre>
<p>To change it we can use the <a href="http://technet.microsoft.com/en-us/library/aa997154.aspx">Set-POPSettings</a> cmdlet.</p>
<pre>[PS] C:\&gt;Set-PopSettings -X509CertificateName pop.exchangeserverpro.net</pre>
<p>Next we need to look at the SMTP server.  On the Hub Transport server there are two Receive Connectors configured by default.</p>
<pre>[PS] C:\&gt;Get-ReceiveConnector

Identity                                Bindings                                Enabled
--------                                --------                                -------
ESP-HO-EX2010A\Client ESP-HO-EX2010A    {:::587, 0.0.0.0:587}                   True
ESP-HO-EX2010A\Default ESP-HO-EX2010A   {:::25, 0.0.0.0:25}                     True</pre>
<p>It might seem logical to use the &#8220;Default &#8221; connector because it is bound to TCP port 25 (SMTP).  However is actually the &#8220;Client &#8221; connector that is intended for this use.  Here is what <a href="http://technet.microsoft.com/en-us/library/aa996395.aspx">TechNet</a> says about these two Receive Connectors.</p>
<blockquote><p><strong>Client Servername</strong> &#8211; This Receive connector accepts SMTP connections from all non-MAPI clients, such as POP and IMAP.</p>
<p><strong>Default Servername</strong> &#8211; This Receive connector accepts connections from other Hub Transport servers and any Edge Transport servers you have.</p></blockquote>
<p>The &#8220;Client &#8221; Receive Connector is bound to TCP port 587.  It is also configured by default to respond to new connections with the FQDN of the server itself.</p>
<pre>[PS] C:\&gt;Get-ReceiveConnector "Client ESP-HO-EX2010A" | fl fqdn

Fqdn : esp-ho-ex2010a.exchangeserverpro.net</pre>
<p>We can change that to the desired name using the <a href="http://technet.microsoft.com/en-us/library/bb125140.aspx">Set-ReceiveConnector</a> cmdlet.</p>
<pre>[PS] C:\&gt;Set-ReceiveConnector "Client ESP-HO-EX2010A" -Fqdn smtp.exchangeserverpro.net</pre>
<p>Now that all of the information has been gathered and the correct settings applied we can publish the information to users in Exchange Control Panel.  This is what a user would normally see in ECP.</p>
<p><img class="aligncenter size-full wp-image-3125" title="exchange-2010-pop-publish-settings" src="http://exchangeserverpro.com/wp-content/uploads/2011/03/exchange-2010-pop-publish-settings.png" alt="" width="580" height="366" />When they click on the link there are no settings displayed by default.</p>
<p><img class="aligncenter size-full wp-image-3126" title="exchange-2010-pop-publish-settings-02" src="http://exchangeserverpro.com/wp-content/uploads/2011/03/exchange-2010-pop-publish-settings-02.png" alt="" width="400" height="254" /></p>
<p>We can see that no external connection settings have been configured to be published.</p>
<pre>[PS] C:\&gt;Get-PopSettings | fl external*

ExternalConnectionSettings : {}

[PS] C:\&gt;Get-ReceiveConnector "Client ESP-HO-EX2010A" | fl adv*

AdvertiseClientSettings : False</pre>
<p>To publish the settings to this location we can run the following commands.</p>
<pre>[PS] C:\&gt;Set-PopSettings -ExternalConnectionSettings {pop.exchangeserverpro.net:995:ssl}</pre>
<p>In the example above the port and security settings from the previous article on <a href="http://exchangeserverpro.com/exchange-server-2010-pop3-configuring-securing-pop-client-access">securing POP3 for Exchange 2010</a> have been used.</p>
<pre>[PS] C:\&gt;Set-ReceiveConnector "Client ESP-HO-EX2010A" -AdvertiseClientSettings $true</pre>
<p>To apply the change reset IIS on the Client Access server.</p>
<pre>[PS] C:\&gt;iisreset

Attempting stop...
Internet services successfully stopped
Attempting start...
Internet services successfully restarted</pre>
<p>Now when we return to the Exchange Control Panel the users can see the published settings.</p>
<p><img class="aligncenter size-full wp-image-3127" title="exchange-2010-pop-publish-settings-03" src="http://exchangeserverpro.com/wp-content/uploads/2011/03/exchange-2010-pop-publish-settings-03.png" alt="" width="430" height="330" /></p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/exchange-2010-pop-configure-windows-mail-client" title="How to Configure Windows Live Mail for Exchange 2010 POP3">How to Configure Windows Live Mail for Exchange 2010 POP3</a></li><li><a href="http://exchangeserverpro.com/enable-disable-pop3-access-exchange-2010-mailboxes" title="How to Enable or Disable POP3 Access for Exchange 2010 Mailboxes">How to Enable or Disable POP3 Access for Exchange 2010 Mailboxes</a></li><li><a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010" title="How to Configure a Relay Connector for Exchange Server 2010">How to Configure a Relay Connector for Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/how-to-add-remote-ip-addresses-to-existing-receive-connectors" title="How to Add Remote IP Addresses to Existing Receive Connectors">How to Add Remote IP Addresses to Existing Receive Connectors</a></li><li><a href="http://exchangeserverpro.com/case-hub-transport-server-load-imbalance" title="The Case of the Hub Transport Server Load Imbalance">The Case of the Hub Transport Server Load Imbalance</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/exchange-2010-publish-pop3-client-settings">How to Publish POP3 Client Settings to Users with Exchange 2010 SP1</a> is © 2011 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/exchange-2010-publish-pop3-client-settings/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Configure a Relay Connector for Exchange Server 2010</title>
		<link>http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010</link>
		<comments>http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010#comments</comments>
		<pubDate>Thu, 19 Aug 2010 09:00:59 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Hub Transport]]></category>
		<category><![CDATA[Receive Connector]]></category>
		<category><![CDATA[Relay]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=1968</guid>
		<description><![CDATA[This tutorial demonstrates how to create a secure Receive Connector on an Exchange Server 2010 Hub Transport server to allow other servers or devices to relay mail.]]></description>
			<content:encoded><![CDATA[<p>In most <a href="http://exchangeserverpro.com">Exchange Server 2010</a> environments there will be the need to allow relaying for certain hosts, devices or applications to send email via the Exchange server.  This is common with multi-function devices such as network attached printer/scanners, or applications such as backup software that send email reports.</p>
<p>SMTP communication is handled by the <a title="Exchange 2010 FAQ: What are the Exchange Server 2010 Server Roles?" href="http://exchangeserverpro.com/exchange-2010-server-roles">Hub Transport server</a> in an Exchange organization.  The transport service listens for SMTP connections on it&#8217;s default Receive Connector. However, this connector is secured by default to not allow anonymous connections (ie, the type of connection most non-Exchange systems will be making).</p>
<p>You can see this in effect if you telnet to the server on port 25 and try to initiate unauthenticated SMTP communications.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 19:42:27 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.9]
mail from: somebody@hotmail.com
530 5.7.1 Client was not authenticated</pre>
<p>For some Hub Transport servers that are internet-facing, anonymous connections may already be enabled.  In those cases relay would still be denied but will behave differently than the first example.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 20:01:44 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.9]
mail from: somebody@hotmail.com
250 2.1.0 Sender OK
rcpt to: somebody@gmail.com
550 5.7.1 Unable to relay</pre>
<p>You&#8217;ll note that relay is denied if I try to send from an @hotmail.com address to an @gmail.com address, because neither is a valid domain for the Exchange organization.  But with Anonymous Users enabled on the Receive Connector I can send from an @hotmail.com address to a valid local address.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 20:05:54 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.9]
mail from: somebody@hotmail.com
250 2.1.0 Sender OK
rcpt to: alan.reid@exchangeserverpro.local
250 2.1.5 Recipient OK
data
354 Start mail input; end with .
test
.
250 2.6.0  [In
ternalId=2] Queued mail for delivery</pre>
<p>However if I try to relay out to an external recipient, the Exchange server does not allow it.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 20:11:27 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.9]
mail from: backups@exchangeserverpro.net
250 2.1.0 Sender OK
rcpt to: alerts@managedserviceprovider.com
550 5.7.1 Unable to relay</pre>
<p>To permit a non-Exchange server to relay mail we can create a new Receive Connector on the Hub Transport server.  Launch the <strong>Exchange Management Console</strong> and navigate to <strong>Server Management</strong>, and then <strong>Hub Transport</strong>. Select the Hub Transport server you wish to create the new Receive Connector on, and from the <strong>Actions</strong> pane of the console choose <strong>New Receive Connector</strong>.</p>
<p><img class="aligncenter size-full wp-image-1969" title="newreceiveconnector01" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector01.png" alt="" width="580" height="250" /></p>
<p>Give the new connector a name such as &#8220;Relay &#8221; and click <strong>Next</strong> to continue.</p>
<p><img class="aligncenter size-full wp-image-1970" title="newreceiveconnector02" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector02.png" alt="" width="475" height="179" /></p>
<p>You can leave the local network settings as is, or optionally you can use a dedicated IP address for this connector if one has already been allocated to the server.  Using dedicated IP addresses for each connector is sometimes required if you need to create connectors with different authentication settings, but for a general relay connector it is not necessary to change it.</p>
<p><img class="aligncenter size-full wp-image-1971" title="newreceiveconnector03" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector03.png" alt="" width="348" height="126" /></p>
<p>Highlight the default IP range in the remote network settings and click the red X to delete it.</p>
<p><img class="aligncenter size-full wp-image-1972" title="newreceiveconnector04" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector04.png" alt="" width="256" height="126" /></p>
<p>Now click the <strong>Add</strong> button and enter the IP address of the server you want to allow to relay through the Exchange server. Click OK to add it and then Next to continue.</p>
<p><img class="aligncenter size-full wp-image-1973" title="newreceiveconnector05" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector05.png" alt="" width="438" height="229" /></p>
<p>Click the <strong>New</strong> button to complete the wizard.</p>
<p>The Receive Connector has now been created but is not yet ready to allow the server to relay through it.  Go back to the <a title="Exchange 2010 FAQ: How Do I Install the Exchange 2010 Management Tools?" href="http://exchangeserverpro.com/exchange-2010-install-management-tools">Exchange Management Console</a>, right-click the newly created Receive Connector and choose properties.</p>
<p>Select the Permission Groups tab and tick the <strong>Exchange Servers</strong> box.</p>
<p><img class="aligncenter size-full wp-image-1975" title="newreceiveconnector07" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector07.png" alt="" width="444" height="193" /></p>
<p>Select the Authentication Tab and tick the <strong>Externally Secured</strong> box.</p>
<p><img class="aligncenter size-full wp-image-1974" title="newreceiveconnector06" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector06.png" alt="" width="444" height="260" /></p>
<p>Apply the changes and the Receive Connector is now ready for the server to relay through.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 20:31:00 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.9]
mail from: backups@exchangeserverpro.net
250 2.1.0 Sender OK
rcpt to: alerts@managedserviceprovider.com
250 2.1.5 Recipient OK
data
354 Start mail input; end with .
test
.
250 2.6.0 &lt;924bab1e-0f07-4054-8700-d121577993b4@EX3.exchangeserverpro.local&gt; [In
ternalId=3] Queued mail for delivery</pre>
<p>Because the remote IP range has been secured to that single IP address, any other servers on different IP addresses still won&#8217;t be able to relay through the Exchange Server.  From any other IP address not included in the remote IP range on the Receive Connector relay will be denied.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 20:46:06 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.2]
mail from: backups@exchangeserverpro.net
250 2.1.0 Sender OK
rcpt to: alerts@managedserviceprovider.com
550 5.7.1 Unable to relay</pre>
<p>You can later add more IP addresses, IP ranges, subnets, or even <a href="http://exchangeserverpro.com/how-to-add-remote-ip-addresses-to-existing-receive-connectors">add multiple IP addresses to the Receive Connector</a> using a script if necessary.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/migrate-relay-connector-exchange-server-2007-2010" title="How to Migrate a Relay Connector from Exchange Server 2007 to 2010">How to Migrate a Relay Connector from Exchange Server 2007 to 2010</a></li><li><a href="http://exchangeserverpro.com/resolving-anonymous-mail-gal-exchange-server-2010" title="Resolving Anonymous Mail to the GAL with Exchange Server 2010">Resolving Anonymous Mail to the GAL with Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-publish-pop3-client-settings" title="How to Publish POP3 Client Settings to Users with Exchange 2010 SP1">How to Publish POP3 Client Settings to Users with Exchange 2010 SP1</a></li><li><a href="http://exchangeserverpro.com/how-to-add-remote-ip-addresses-to-existing-receive-connectors" title="How to Add Remote IP Addresses to Existing Receive Connectors">How to Add Remote IP Addresses to Existing Receive Connectors</a></li><li><a href="http://exchangeserverpro.com/case-hub-transport-server-load-imbalance" title="The Case of the Hub Transport Server Load Imbalance">The Case of the Hub Transport Server Load Imbalance</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010">How to Configure a Relay Connector for Exchange Server 2010</a> is © 2010 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010/feed</wfw:commentRss>
		<slash:comments>53</slash:comments>
		</item>
		<item>
		<title>How to Add Remote IP Addresses to Existing Receive Connectors</title>
		<link>http://exchangeserverpro.com/how-to-add-remote-ip-addresses-to-existing-receive-connectors</link>
		<comments>http://exchangeserverpro.com/how-to-add-remote-ip-addresses-to-existing-receive-connectors#comments</comments>
		<pubDate>Thu, 17 Dec 2009 21:00:35 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[EMC]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Exchange Management Shell]]></category>
		<category><![CDATA[Hub Transport]]></category>
		<category><![CDATA[Receive Connector]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=1085</guid>
		<description><![CDATA[This Exchange Managment Shell tip will show you how to add new IP addresses to a Receive Connector in Exchange 2007 or 2010 without overwriting the existing remote IP range.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1567" title="radar" src="http://exchangeserverpro.com/wp-content/uploads/2009/12/radar.jpg" alt="" width="250" height="187" />The Exchange Management Shell provides the <a href="http://technet.microsoft.com/en-us/library/bb125140(EXCHG.140).aspx">Set-ReceiveConnector</a> cmdlet for modifying settings on Hub Transport server Receive Connectors.  This can include the <strong>RemoteIPRanges</strong> setting, which is the multivalued list of IP addresses on the network that are allowed to use that Receive Connector to send mail.</p>
<p>Most Exchange environments will include at least one Receive Connector that is configured to allow certain hosts and applications to relay email.  Over time this may build up a lengthy RemoteIPRanges IP address list.  When it comes time to add additional IP addresses to the list it seems logical to use Set-ReceiveConnector, however this cmdlet will overwrite the existing setting with the new IP address specified.</p>
<p>For example, look at the current IP addresses:</p>
<pre>[PS] C:\&gt;Get-ReceiveConnector "Relay Connector" | fl remoteipranges

RemoteIPRanges : {10.0.0.21, 10.0.0.23, 10.0.0.22, 10.0.0.14, 10.0.0.20, 10.0.0.19, 10.0.0.18, 10.0.0.17, 10.0.0.16, 10
                 .0.0.15, 10.0.0.10, 10.0.0.9, 10.0.0.8, 10.0.0.7, 10.0.0.6, 10.0.0.5, 10.0.0.4, 10.0.0.13, 10.0.0.12,
                 10.0.0.11, 10.0.0.3, 10.0.0.2, 10.0.0.1}
</pre>
<p>Note: if the list of IP addresses is too long and is being truncated in the shell output see <a href="http://exchangeserverpro.com/how-to-prevent-truncation-of-long-output-in-exchange-management-shell">this tip for extending the enumeration limit</a>.</p>
<p>Now use Set-ReceiveConnector with a new IP of 10.0.0.99:</p>
<pre>[PS] C:\&gt;Set-ReceiveConnector "Relay Connector" -RemoteIPRanges 10.0.0.99</pre>
<p>And whoops, we&#8217;ve overwritten all of the previous IP addresses!</p>
<pre>[PS] C:\&gt;Get-ReceiveConnector "Relay Connector" | fl remoteipranges

RemoteIPRanges : {10.0.0.99}
</pre>
<p>If you were just adding one new IP address the Management Console would do the job, but that can be slow for remote servers and is not as efficient if the change is being applied to multiple servers or involves adding multiple IP addresses.</p>
<p>Fortunately with the Exchange Management Shell we can easily add IP addresses to existing Receive Connectors.</p>
<p>To add a single IP address to an existing Receive Connector:</p>
<pre>[PS] C:\&gt;$RecvConn = Get-ReceiveConnector "Relay Connector"
[PS] C:\&gt;$RecvConn.RemoteIPRanges += "10.0.0.99"
[PS] C:\&gt;Set-ReceiveConnector "Relay Connector" -RemoteIPRanges $RecvConn.RemoteIPRanges
</pre>
<p>Now we can see that 10.0.0.99 has been added to the Receive Connector.</p>
<pre>[PS] C:\&gt;Get-ReceiveConnector "Relay Connector" | fl remoteipranges

RemoteIPRanges : {10.0.0.99, 10.0.0.23, 10.0.0.22, 10.0.0.21, 10.0.0.1, 10.0.0.2, 10.0.0.3, 10.0.0.11, 10.0.0.12, 10.0.
                 0.13, 10.0.0.4, 10.0.0.5, 10.0.0.6, 10.0.0.7, 10.0.0.8, 10.0.0.9, 10.0.0.10, 10.0.0.15, 10.0.0.16, 10.
                 0.0.17, 10.0.0.18, 10.0.0.19, 10.0.0.20, 10.0.0.14}</pre>
<p>To add multiple IP addresses at once use this command sequence:</p>
<pre>[PS] C:\&gt;$RecvConn = Get-ReceiveConnector "Relay Connector"
[PS] C:\&gt;$RecvConn.RemoteIPRanges += "10.0.0.99", "10.0.0.100", "10.0.0.101"
[PS] C:\&gt;Set-ReceiveConnector "Relay Connector" -RemoteIPRanges $RecvConn.RemoteIPRanges
</pre>
<p>Sometimes the list of IPs being added is too long to type out.  To add multiple IP addresses from a text file called newips.txt use this command sequence instead:</p>
<pre>[PS] C:\&gt;$RecvConn = Get-ReceiveConnector "Relay Connector"
[PS] C:\&gt;Get-Content .\newips.txt | foreach {$RecvConn.RemoteIPRanges += "$_"}
[PS] C:\&gt;Set-ReceiveConnector "Relay Connector" -RemoteIPRanges $RecvConn.RemoteIPRanges
</pre>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/migrate-relay-connector-exchange-server-2007-2010" title="How to Migrate a Relay Connector from Exchange Server 2007 to 2010">How to Migrate a Relay Connector from Exchange Server 2007 to 2010</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-publish-pop3-client-settings" title="How to Publish POP3 Client Settings to Users with Exchange 2010 SP1">How to Publish POP3 Client Settings to Users with Exchange 2010 SP1</a></li><li><a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010" title="How to Configure a Relay Connector for Exchange Server 2010">How to Configure a Relay Connector for Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-certificate-revocation-checks-and-proxy-settings" title="Exchange 2010 Certificate Revocation Checks and Proxy Settings">Exchange 2010 Certificate Revocation Checks and Proxy Settings</a></li><li><a href="http://exchangeserverpro.com/browsing-mailbox-databases-in-exchange-2007-and-2010" title="Browsing Mailbox Databases in Exchange 2007 and 2010">Browsing Mailbox Databases in Exchange 2007 and 2010</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/how-to-add-remote-ip-addresses-to-existing-receive-connectors">How to Add Remote IP Addresses to Existing Receive Connectors</a> is © 2009 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/how-to-add-remote-ip-addresses-to-existing-receive-connectors/feed</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Configuring the Exchange Server 2007 Hub Transport Server</title>
		<link>http://exchangeserverpro.com/configuring-the-exchange-server-2007-hub-transport-server</link>
		<comments>http://exchangeserverpro.com/configuring-the-exchange-server-2007-hub-transport-server#comments</comments>
		<pubDate>Tue, 25 Aug 2009 18:33:42 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange Server 2007 Transition Guide]]></category>
		<category><![CDATA[Hub Transport]]></category>
		<category><![CDATA[ISA Server]]></category>
		<category><![CDATA[Receive Connector]]></category>
		<category><![CDATA[Send Connector]]></category>
		<category><![CDATA[SMTP]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=791</guid>
		<description><![CDATA[How to configure the Hub Transport Server connectors to send and receive internet email.]]></description>
			<content:encoded><![CDATA[<p>When you install Exchange Server 2007 into an existing Exchange Organization it will import many of the relevant settings for the Hub Transport server.  To begin sending and receiving email with Exchange Server 2007 we must configure Connectors.</p>
<h2>Configure the Receive Connector</h2>
<p>To allow the Exchange server to accept incoming email from the internet the default Receive Connector must be modified.  Navigate to <strong>Server Configuration/Hub Transport</strong>.  Open the properties of the default Receive Connector.</p>
<p><img class="alignnone size-full wp-image-793" title="ht01" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/ht01.png" alt="ht01" width="532" height="277" /></p>
<p>Select the <strong>Permission Groups</strong> tab and enable the <strong>Anonymous Users</strong> group.  Click <strong>OK</strong> when complete.</p>
<p><img class="alignnone size-full wp-image-794" title="ht02" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/ht02.png" alt="ht02" width="443" height="205" /></p>
<h2>Configure the Send Connector</h2>
<p>Navigate to <strong>Organization Configuration/Hub Transport</strong>.  In the Actions pane to the right of the Exchange Management Console click <strong>New Send Connector</strong>.</p>
<p><img class="alignnone size-full wp-image-795" title="ht03" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/ht03.png" alt="ht03" width="226" height="98" /></p>
<p>Enter a meaningful name such as <strong>Internet Email</strong> and set the intended use to <strong>Internet</strong>.</p>
<p><img class="alignnone size-full wp-image-796" title="ht04" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/ht04.png" alt="ht04" width="456" height="131" /></p>
<p>Click <strong>Next</strong> to continue.</p>
<p>Click the <strong>Add</strong> button and add an SMTP address space of * to route all mail to external domains over this Send Connector.</p>
<p><img class="alignnone size-full wp-image-797" title="ht05" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/ht05.png" alt="ht05" width="487" height="342" /></p>
<p>Click <strong>OK</strong> and then <strong>Next</strong> to continue.</p>
<p>If you route your outgoing mail via an ISP smart host or email security service choose that option and enter the IP address or DNS name of the smart host.  You can add more than one smart host if necessary.  Otherwise leave it configured to use DNS to route mail directly to the destination.</p>
<p><img class="alignnone size-full wp-image-798" title="ht06" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/ht06.png" alt="ht06" width="451" height="163" /></p>
<p>Click <strong>Next</strong> to continue.  The Hub Transport server is automatically included as a source server for the Send Connector.  Click <strong>Next</strong> to continue, then <strong>New</strong> to create the Send Connector with the chosen settings.  When the Send Connector has been created successfully click <strong>Finish</strong>.</p>
<h2>Allow the Exchange Server 2007 server to send email to the internet</h2>
<p>Add a rule on your network&#8217;s firewall to permit the Exchange Server 2007 server to send traffic to the internet on TCP port 25.  On an ISA Server 2006 firewall the process is as follows.</p>
<p>Open the <strong>ISA Server Management</strong> console and navigate to <strong>&lt;ISA server name&gt;/Firewall Policy</strong>.</p>
<p><img class="alignnone size-full wp-image-799" title="isa01" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/isa01.png" alt="isa01" width="211" height="103" /></p>
<p>Click on <strong>Create Access Rule</strong> in the Tasks pane on the right side of the ISA Server Management Console.</p>
<p><img class="alignnone size-full wp-image-800" title="isa02" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/isa02.png" alt="isa02" width="203" height="182" /></p>
<p>Give the new Access Rule a meaningful name such as &#8220;Permit Outbound SMTP&#8221;.  Click <strong>Next</strong> to continue.</p>
<p><img class="alignnone size-full wp-image-801" title="isa03" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/isa03.png" alt="isa03" width="290" height="104" /></p>
<p>Set the <strong>Rule Action</strong> to <strong>Allow</strong>.  Click <strong>Next</strong> to continue.</p>
<p><img class="alignnone size-full wp-image-802" title="isa04" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/isa04.png" alt="isa04" width="276" height="148" /></p>
<p>Leave the <strong>Protocols</strong> set to &#8220;Selected protocols&#8221;.  Click the <strong>Add</strong> button and choose <strong>SMTP</strong> from the <strong>Common Protocols</strong> list.  Click <strong>Add</strong> again to add SMTP to the list of permitted protocols for this Access Rule.</p>
<p><img class="alignnone size-full wp-image-803" title="isa05" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/isa05.png" alt="isa05" width="503" height="423" /></p>
<p>Click <strong>Close</strong> to close the <strong>Add Protocols</strong> selection dialog, then click <strong>Next</strong> to continue.</p>
<p>For the <strong>Access Rule Sources</strong> click the <strong>Add</strong> button and then click <strong>New</strong> -&gt; <strong>Computer.</strong></p>
<p><strong><img class="alignnone size-full wp-image-804" title="isa06" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/isa06.png" alt="isa06" width="500" height="259" /><br />
</strong></p>
<p>Enter the name and IP address of the Exchange Server 2007 server then click <strong>OK</strong>.</p>
<p><img class="alignnone size-full wp-image-805" title="isa07" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/isa07.png" alt="isa07" width="384" height="148" /></p>
<p>In the <strong>Add Network Entities</strong> dialog navigate to <strong>Computers</strong> and select the computer object you just created.  Click <strong>Add</strong> to add it to the new Access Rule, then click <strong>Close</strong>.</p>
<p><img class="alignnone size-full wp-image-806" title="isa08" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/isa08.png" alt="isa08" width="272" height="155" /></p>
<p>Now that the Exchange server is showing in the list of Access Rule Sources click <strong>Next</strong> to continue.</p>
<p><img class="alignnone size-full wp-image-807" title="isa09" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/isa09.png" alt="isa09" width="502" height="183" /></p>
<p>In the <strong>Access Rule Destinations</strong> dialog click <strong>Add, </strong>navigate to <strong>Networks</strong> select <strong>External</strong><strong> </strong>then click <strong>Add</strong> and <strong>Close</strong>.  Click <strong>Next</strong> to continue.</p>
<p><img class="alignnone size-full wp-image-808" title="isa10" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/isa10.png" alt="isa10" width="500" height="239" /></p>
<p>Leave the <strong>User Sets</strong> configured to <strong>All Users</strong>.  Click <strong>Next</strong> to continue, then click <strong>Finish</strong> to close the New Access Rule Wizard.</p>
<p>Apply the ISA rule changes.</p>
<p><img class="alignnone size-full wp-image-809" title="isa11" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/isa11.png" alt="isa11" width="500" height="103" /></p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/publish-incoming-smtp-to-the-exchange-server-2007-server-with-isa-server-2006" title="Publish incoming SMTP to the Exchange Server 2007 server with ISA Server 2006">Publish incoming SMTP to the Exchange Server 2007 server with ISA Server 2006</a></li><li><a href="http://exchangeserverpro.com/how-to-share-an-email-domain-between-two-mail-systems" title="How to Share an Email Domain Between Two Mail Systems">How to Share an Email Domain Between Two Mail Systems</a></li><li><a href="http://exchangeserverpro.com/route-outbound-email-through-the-exchange-server-2007-hub-transport-server" title="Route outbound email through the Exchange Server 2007 Hub Transport server">Route outbound email through the Exchange Server 2007 Hub Transport server</a></li><li><a href="http://exchangeserverpro.com/publish-exchange-server-2007-owa-using-isa-server-2006" title="Publish Exchange Server 2007 OWA Using ISA Server 2006">Publish Exchange Server 2007 OWA Using ISA Server 2006</a></li><li><a href="http://exchangeserverpro.com/generate-smtp-error-statistics-using-log-parser-and-exchange-server-2010-protocol-logs" title="Generate SMTP Error Statistics using Log Parser and Exchange Server 2010 Protocol Logs">Generate SMTP Error Statistics using Log Parser and Exchange Server 2010 Protocol Logs</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/configuring-the-exchange-server-2007-hub-transport-server">Configuring the Exchange Server 2007 Hub Transport Server</a> is © 2009 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/configuring-the-exchange-server-2007-hub-transport-server/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

