Configurer une entrée d’application approuvée pour le contrôle d’appel distant

 

Dernière rubrique modifiée : 2011-02-01

Vous devez configurer la passerelle SIP/CSTA en tant qu’application approuvée pour que Lync Server achemine les appels vers la passerelle au moyen d’un itinéraire statique.

importantImportant :
Si vous migrez des utilisateurs à partir d’un déploiement Communications Server 2007 R2 ou Communications Server 2007, vérifiez que vous avez supprimé toutes les entrées d’applications approuvées existantes (auparavant appelées entrées d’hôtes autorisés) que vous aviez créées pour la passerelle SIP/CSTA avant d’effectuer la procédure présentée dans cette rubrique. Pour plus d’informations, voir Supprimer un hôte autorisé hérité (facultatif).

Pour configurer une entrée d’application approuvée pour la passerelle SIP/CSTA

  1. Ouvrez une session sur l’ordinateur sur lequel Lync Server Management Shell est installé en tant que membre du groupe RTCUniversalServerAdmins ou un rôle de contrôle d’accès basé sur un rôle (RBAC) auquel vous avez affecté la cmdlet New-CsTrustedApplicationPool.

  2. Démarrez Lync Server Management Shell : cliquez successivement sur Démarrer, Tous les programmes, Microsoft Lync Server 2010, puis Lync Server Management Shell.

  3. Pour créer une entrée d’application approuvée, procédez comme suit :

    • Pour une connexion TLS (Transport Layer Security), tapez ce qui suit à l’invite de commandes :

      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>
      

      Par exemple :

      New-CsTrustedApplicationPool -Identity rccgateway.contoso.net -Registrar registrar1.contoso.net -Site co1 -TreatAsAuthenticated $true -ThrottleAsServer $true
      
    • Pour une connexion TCP (Transmission Control Protocol), tapez ce qui suit à l’invite de commandes :

      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>
      

      Par exemple :

      New-CsTrustedApplicationPool -Identity 192.168.0.240 -Registrar registrar1.contoso.net -Site co1 -TreatAsAuthenticated $true -ThrottleAsServer $true
      
  4. Pour ajouter l’application approuvée au pool, procédez de l’une des manières suivantes :

    • Pour une connexion TLS, tapez ce qui suit à l’invite de commandes :

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

      Par exemple :

      New-CsTrustedApplication -ApplicationID RccGateway-1 -TrustedApplicationPoolFqdn rccgateway.contoso.net -Port 5065
      
    • Pour une connexion TCP, tapez ce qui suit à l’invite de commandes :

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

      Par exemple :

      New-CsTrustedApplication -ApplicationID RccGateway-1 -TrustedApplicationPoolFqdn 192.169.0.240 -Port 5065 -EnableTcp
      
  5. Pour implémenter les modifications publiées que vous avez apportées à la topologie, tapez ce qui suit à l’invite de commandes :

    Enable-CsTopology