Share via


リモート通話コントロールの信頼済みアプリケーション エントリを構成する

 

トピックの最終更新日: 2011-02-01

Lync Server で静的ルートを適用して通話をゲートウェイにルーティングするために、信頼されたアプリケーションとして SIP/CSTA ゲートウェイを構成する必要があります。

important重要:
Communications Server 2007 R2 または Communications Server 2007 の展開からユーザーを移行する場合、このトピックの手順を実行する前に、SIP/CSTA ゲートウェイ用に作成した既存の信頼されたアプリケーション エントリ (以前は承認済みホスト エントリと呼ばれていました) がすべて削除されていることを確認します。 詳細については、「従来の承認済みホストの削除 (オプション)」を参照してください。

SIP/CSTA ゲートウェイの信頼されたアプリケーション エントリを構成するには

  1. Lync Server 管理シェルがインストールされているコンピューターに RTCUniversalServerAdmins グループのメンバー、または New-CsTrustedApplicationPool コマンドレットを割り当てた役割ベースのアクセス制御 (RBAC) の役割のメンバーとしてログオンします。

  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