无法创建接收连接器

时间:2017-05-25 11:52:34

标签: powershell exchange-server

所以我试图将一个接收连接器从一个服务器复制到另一个服务器。我将接收连接器存储在一个变量中:

$NKCRC = Get-ReceiveConnector "<Source Resource Connector>" | Select *

然后我尝试使用以下命令创建新的:

New-ReceiveConnector -Server $targetServer -Bindings $NKCRC.Bindings -RemoteIPRanges $NKCRC.RemoteIPRanges -Name $NKCRC.Name -TransportRole FrontEndTransport

源RC是Exchange 2010 RC,我在Exchange 2016服务器上创建它。当我运行该命令时,我收到以下错误:

The values that you specified for the Bindings and RemoteIPRanges parameters
conflict with the settings on Receive connector "<Identity of receive connector on the 
target server>" SMTP Relay". 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.

我检查了上面提到的RC,发现它们没有完全相同的设置,包括ANYTHING AT ALL,Bindings或RemoteIPRanges。我有点不知所措。每个RC的绑定和RemoteIPRanges如下:

来源RC绑定:{0.0.0.0:25}

来源RC RemoteIPRanges的数量:60(而不是全部发布,lol)

交易所认为是重复的RC

绑定:{0.0.0.0:25,10.200.154.79:25}

源RC RemoteIPRanges计数:50

显然他们不是重复的,对吧?我错过了什么?

0 个答案:

没有答案