为远程呼叫控制配置受信任的应用程序项

 

上一次修改主题: 2011-02-01

必须将 SIP/CSTA 网关配置为受信任应用程序,Lync Server 才能使用静态路由将呼叫路由到网关。

important重要提示:
如果要从 Communications Server 2007 R2 或 Communications Server 2007 部署中迁移用户,请确保在使用本主题中的过程之前删除为 SIP/CSTA 网关创建的所有现有受信任的应用程序项(以前称为授权主机条目)。有关详细信息,请参阅删除旧版授权主机(可选)

为 SIP/CSTA 网关配置受信任的应用程序项

  1. 以 RTCUniversalServerAdmins 组成员或已为其分配 New-CsTrustedApplicationPool cmdlet 的基于角色的访问控制 (RBAC) 角色身份登录安装 Lync Server 命令行管理程序的计算机。

  2. 启动 Lync Server 命令行管理程序:依次单击“开始”、“所有程序”和“Microsoft Lync Server 2010”,然后单击“Lync Server 命令行管理程序”。

  3. 要创建受信任的应用程序项,请执行下列操作之一:

    • 对于传输层安全性 (TLS) 连接,请在命令提示符处键入以下内容:

      New-CsTrustedApplicationPool -Identity <FQDN of the SIP/CSTA gateway> [-Registrar <Service ID or FQDN of the Registrar service>] -Site <Site ID for the site where you want to create the trusted application pool>
      

      例如:

      New-CsTrustedApplicationPool -Identity rccgateway.contoso.net -Registrar registrar1.contoso.net -Site co1 -TreatAsAuthenticated $true -ThrottleAsServer $true
      
    • 对于传输控制协议 (TCP) 连接,请在命令提示符处键入以下内容:

      New-CsTrustedApplicationPool -Identity <IP address or FQDN of the SIP/CSTA gateway> [-Registrar <Service ID or FQDN of the Registrar service>] -Site <Site ID for the site where you want to create the trusted application pool>
      

      例如:

      New-CsTrustedApplicationPool -Identity 192.168.0.240 -Registrar registrar1.contoso.net -Site co1 -TreatAsAuthenticated $true -ThrottleAsServer $true
      
  4. 要将受信任应用程序添加到池,请执行下列操作之一:

    • 对于 TLS 连接,请在命令提示符处键入以下内容:

      New-CsTrustedApplication -ApplicationID <application name> -TrustedApplicationPoolFqdn <FQDN of the SIP/CSTA gateway> -Port <SIP listening port on the gateway>
      

      例如:

      New-CsTrustedApplication -ApplicationID RccGateway-1 -TrustedApplicationPoolFqdn rccgateway.contoso.net -Port 5065
      
    • 对于 TCP 连接,请在命令提示符处键入以下内容:

      New-CsTrustedApplication -ApplicationID <application name> -TrustedApplicationPoolFqdn <IP address or FQDN of the SIP/CSTA gateway> -Port <SIP listening port on the gateway> -EnableTcp
      

      例如:

      New-CsTrustedApplication -ApplicationID RccGateway-1 -TrustedApplicationPoolFqdn 192.169.0.240 -Port 5065 -EnableTcp
      
  5. 要实现对拓扑所做的已发布更改,请在命令提示符处键入以下内容:

    Enable-CsTopology