The exiting environment is consisting three lync 2013 and three Skype for business pool in three sites. The requirement is to create new static route for new SFB pool for communication with
Polycom video environment.
I did not get properly documented in Microsoft Technet. So i just went and hit the below command to add new static route in one of the SFB Pool.
$routeINDSFBPool = New-CsStaticRoute -TLSRoute -destination “video.polycom.domain.com” -port 5061 -matchuri “video” -usedefaultcertificat $true
Set-CsStaticRoutingConfiguration -identity service:Registrar:sfbpool.domain.com -route @{Add=$routeINDSFBPool}
We got below error saying that- “Set-CsStaticRoutingConfiguration : Cannot find “StaticRoutingConfiguration” “Registrar: sfbpool.domain.com” because it does not exist”
After many discussion within team my team member found that, we could not modify the static route for new SFB pool which was never created. Hence we need to create it as new.
We ran below cmdlet and its solve the issue.
$routeINDSFBPool = New-CsStaticRoute -TLSRoute -destination “video.polycom.domain.com” -port 5061 -matchuri “video” -usedefaultcertificat $true
New-CsStaticRoutingConfiguration -identity service:Registrar: sfbpool.domain.com -route @{Add=$routeAPSFBPool}
We hope it will help someone !
Leave a Reply