Cisco Cisco TelePresence Video Communication Server Expressway

Page of 80
Configuring Lync Server domain static routes
This involves configuring domain static routes that route calls to the video and MCU domains to the “Lync 
gateway” VCS.
The routes should reside on the Director (pool) if present, otherwise on the FEP (pool).
Configuring static routes to route calls to the “Lync gateway” VCS
 1.  Create a static route from Lync to the "Lync gateway" VCS.
Use the command New-CsStaticRoute with the following parameters:
$=
: the label referring to this specific new route.
-TLSRoute
: specifies that the route is TLS (recommended).
-TCPRoute
: specifies that the route is TCP.
-Destination
: the "Lync gateway" VCS  Cluster FQDN  for TLS routes. Use the IP Address in case of 
TCP routes.
-MatchUri
: the SIP domain that "Lync gateway" VCS is authoritative for.
-Port
: the TLS/TCP port to use for neighboring. It should be the port configured as Port on B2BUA for 
Lync call communications in the B2BUA advanced settings on the VCS (default 65072).
-UseDefaultCertificate
: to use the default certificate assigned to the Front End (must be $true) 
when using TLS. Do not specify this switch when using TCP.
 
For example, for TLS:
C:\Users\administrator.CISCOTP> $Route1=New-CsStaticRoute -TLSRoute -Destination 
"lyncvcs.ciscotp.com" -MatchUri "vc.ciscotp.com" –Port 65072 -UseDefaultCertificate 
$true
For example, for TCP:
C:\Users\administrator.CISCOTP> $Route1=New-CsStaticRoute -TCPRoute -Destination 
"10.0.0.2" -MatchUri "vc.ciscotp.com" –Port 65072
 2.  Assign a static route. 
Use the command Set-CsStaticRoutingConfiguration with the following parameters:
-Identity
: specifies where to apply the route. It can be at the global level or on a specific pool.
-Route @{Add=}
: the route (defined earlier) to assign to the Identity (note that brackets are “curly”).
For example:
C:\Users\administrator.CISCOTP> Set-CsStaticRoutingConfiguration -Identity global -
Route @{Add=$Route1}
 3.  Verify the static route assignment. Use the command :
Get-CsStaticRoutingConfiguration | Select-Object -ExpandProperty Route
 4.  Repeat the process for the mcu domain mcu.ciscotp.com and any other domains in the video network.
To do this for the mcu domain, create and assign the static route using the same commands as above, 
but use a different label ($Route2) and specify -MatchUri "mcu.ciscotp.com".
Note that:
 
n
When Lync Server tries to route a call it will first check all its registrations:
 
l
If any registration is found that matches the called URI, the call will be sent to that device, or if multiple 
registrations exist, the call will be forked to all registered devices that match the URI.
Cisco TelePresence Microsoft Lync and Cisco VCS Deployment Guide (X8.2)     
Page 38 of 80
Enabling Lync clients registered on Lync Server to call endpoints registered on the video network