I have a Dell PowerEdge r420 with an Intel Xeon E5-2430 processor and 8 gig of ram. The server is running Server 2012 r2 Standard. It is in a domain, with the primary domain controller being a server running Server 2003 r2 Enterprise x64 sp2. I am receiving the following error when I try to install Exchange 2013 SP1.
Error:
The following error was generated when "$error.Clear();
$defaultPort = 25;
$localServer = get-exchangeserver $RoleFqdnOrName -DomainController $RoleDomainController;
if ($localServer.IsFrontendTransportServer)
{
Write-ExchangeSetupLog -Info "Using port 2525 for the default hub receive connector since frontend role already present.";
$defaultPort = 2525;
}
$bindingString1 = '0.0.0.0:' + $defaultPort;
$bindingString2 = ':::' + $defaultPort;
$binding1 = new-object Microsoft.Exchange.Data.IPBinding $bindingString1;
$binding2 = new-object Microsoft.Exchange.Data.IPBinding $bindingString2;
new-receiveconnector `
-Name ("Default " + [String][System.Environment]::MachineName ) `
-MaxRecipientsPerMessage 5000 `
-Fqdn $RoleFqdnOrName `
-Bindings $binding1,$binding2 `
-RemoteIPRanges 0.0.0.0-255.255.255.255,[::]-FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF `
-DomainController $RoleDomainController `
-MaxInboundConnectionPerSource Unlimited `
-MaxInboundConnectionPercentagePerSource 100 `
-SizeEnabled EnabledWithoutValue;
" was run: "The values that you specified for the Bindings and RemoteIPRanges parameters conflict with the settings on Receive connector "AGEXCH01\Default AGEXCH01". A Receive connector must have a unique combination of a local IP address, port bindings, and remote IP address ranges. Change at least one of these values.".
We have tried to research this error and have not found any solutions that address the problems.