Forum Discussion

fowler_23's avatar
fowler_23
Iron Contributor
Jul 03, 2020
Solved

Dynamic Emergency Calling

Some assistance please in those who have configured Dynamic Emergency Call Routing   When it comes to Set-CsOnlineLisSubnet for the subnets.   For example, the persons IP address is 10.10.10.100 ...
  • Hi fowler_23 ,

     

    Have you tried defining the Network via New-CsTenantNetworkSubnet, an example of which is shown here:  New-CsTenantNetworkSubnet -Identity 192.168.1.0 -Description "Home Subnet" -MaskBits 24 -NetworkSiteID "Home Office"

     

    The above should let you at least define the Subnet Mask, so not sure if you did this and then your set command it would help?

     

    You might want to even do the New-CsTenantNetwork site. A sequence of which is shown below:

     

    #Specify New Network Location

    New-CsTenantNetworkSite -EmergencyCallingPolicy "Home Office" -Description "Home" -Identity "Home Office"

     

    #Add Subnet to Network Location

    New-CsTenantNetworkSubnet -Identity 192.168.1.0 -Description "Home Subnet" -MaskBits 24 -NetworkSiteID "Home Office"

     

    #Associate Subnet with LIS Location

    Set-CsOnlineLisSubnet -Subnet 192.168.1.0 -LocationId c0139040-8a99-4288-b09b-639b34efb999

    Get-CsOnlineLisSubnet

     

    Thanks

     

    Henry

Resources