IT tutorials
 
Technology
 

Microsoft Lync Server 2010 : Enterprise Voice - Enhanced 911

9/3/2013 10:08:59 AM
- Free product key for windows 10
- Free Product Key for Microsoft office 365
- Malwarebytes Premium 3.7.1 Serial Keys (LifeTime) 2019

Enhanced 911 is a feature that was not possible in earlier product versions of Lync Server. Enhanced 911 provides the caller’s telephone number and street address to a dispatcher automatically. This is an advantage over traditional 911 service that requires the caller to provide an address where assistance is required.

Lync Server 2010 can maintain a location database for an organization that associates specific gateways, subnets, and wireless SSIDs with physical location addresses. Lync Server 2010 supports E-911 with support from a certified emergency services provider. Emergency calls are routed through a SIP trunk to the emergency services provider.

Configuring Site Locations

Lync Server 2010 enables clients to detect their locations on a network automatically, but a database of locations in the organization must be defined in advance for this automation to work correctly. Lync can match clients to a street address location based on the following network objects:

  • Wireless Access Point— Matches a wireless access point based on the Basic Service Set Identifier (BSSID) of the device that is the MAC address.

  • Subnet— Matches a location based on the subnet of the Lync endpoint it connects from.

  • Port— Matches a unique port on a switch based on the switch’s MAC address and the port ID. The port ID can be an interface alias, name, or just locally assigned port number.

  • Switch— Matches a switch based on the chassis ID MAC address.

When defining each of these objects, they can be associated with an address. The address parameters configurable are listed here:

  • City— The location city. For example, San Francisco.

  • Company Name— The name of the company at this location. For example, Company ABC.

  • Country— The two-character location country. For example, US.

  • HouseNumber— The location address number. For example, 123.

  • HouseNumberSuffix— Additional information after the address number. For example, B.

  • Location— A more detailed location after the street number, such as a suite or specific floor. For example, Suite 456.

  • PostalCode— The location postal code. For example, 12345.

  • PostDirectional— Any directional information after the street address. For example, NE.

  • PreDirectional— Any directional information before the street address. For example, SW.

  • State— The location state. For example, CA.

  • StreetName— The location street name. For example, Market.

  • StreetSuffix— The location street suffix. For example, Street or Avenue.

All the location information must be entered through the Lync Server Management Shell. Creating each object is done through the Set-<LIS Object Type> cmdlets:

  • Set-CsLisWirelessAccessPoint

  • Set-CsLisSubnet

  • Set-CsLisPort

  • Set-CsLisSwitch

For example, to create a new subnet and location definition:

Set-CsLisSubnet –Subnet 192.168.22.0 –Description "Client Subnet"
–CompanyName "Company ABC"–HouseNumber 123 –Location "Suite 456"–StreetName
"Fake" –StreetSuffix "Avenue" –City "San Francisco" –State CA –PostalCode
12345 –Country US

Because importing every single wireless access point, subnet, port, or switch manually would be a tedious effort, defining all the required objects in advance through a CSV file can help speed up the process of building the database. The CSV file can then be used for a bulk-import process.

After creating all the Location Information Service objects, the configuration must be published. The objects are not recognized by Lync clients until this step is performed. To publish the location database, run the following cmdlet from the Lync Server Management Shell:

Publish-CsLisConfiguration

Validate Addresses

Lync Server 2010 cannot route emergency calls with location information directly by itself and instead relies on an E-911 Network Routing Provider to route the calls appropriately. Lync transmits the location information it knows about to the routing provider, which delivers it to the emergency service.

To configure a routing provider, use the following:

Set-CsLisServiceProvider –ServiceProviderName <Name> -ValidationServiceUrl
<URL from Provider> -CertFileName <Certificate path and filename issued by
provider> -Password <Password issued by provider>

After a provider has been provisioned, each address in the location database should be validated with the provider. To run a test against all existing addresses, use the following cmdlet:

Get-CsLisCivicAddress | Test-CsLisCivicAddress -UpdateValidationStatus

The UpdateValidationStatus also stamps each address with an attribute indicating it has been verified successfully.

Create Location Policy

For Lync to support location information objects, users must be associated with a Location Policy that allows these features. Location policies can exist at the global, site, or user level so that not all users or sites must be enforced the same way. When creating a location policy, an administrator has the following options:

  • Enable enhanced emergency services— This setting enables the client for E-911. When registering with a Lync registrar service, the client acquires location information.

  • Location— This setting takes effect only if emergency services are enabled, and it is used when a Lync client cannot determine a location automatically. Setting this value to no means the user is not prompted for a location. A value of yes means the user sees a visible red error in the location field, so he enters the information. Disclaimer means the user is prompted for location and cannot dismiss the prompt until a location is entered. Users cannot place any calls except to emergency services unless entering a location with this setting.

  • Use location for emergency services only— Location information gathered from Lync clients can also be shared with team members. Selecting this option prevents Lync from sharing location information between users.

  • PSTN Usage— This is the PSTN usage associated with placing emergency calls. This determines what voice route is used for callers associated with the location policy. This usage must already exist, so be sure to define a new Emergency Services usage prior to configuring a location policy.

  • Emergency dial number— This is the number dialed by a client that signifies an emergency call is being made, so location and callback information is automatically included.

  • Emergency dial mask— A list of dial strings that users might use to dial emergency services; it is separated by semicolons. For example, emergency dial strings from other countries can be used here which will then be mapped to the actual emergency dial number.

  • Notification URI— SIP URI that receives an instant message notification when an emergency call is placed. Should contain the sip: prefix.

  • Conference URI— SIP URI that should be conferenced into the call when an emergency call is placed. Should contain the SIP prefix and can also be a phone number.

  • Conference Mode— Specifies whether the conference URI contact can be included in the call using one-way or two-way communication. One-way means the conference URI can listen only to the call as it occurs and two-way means the contact can participate.

To create a new location policy, use the following steps:

1.
Open the Lync Server 2010 Control Panel.

2.
Click Network Configuration.

3.
Click Location Policy.

4.
Click New and select either Site policy or User policy.

5.
Check the box Enable enhanced emergency services to enable the feature.

6.
Select a Location specification requirement policy.

7.
Select whether to Use location for emergency services only.

8.
Enter an Emergency dial number.

9.
Enter any Emergency dial masks, separated by semicolons.

10.
Enter a Notification URI, if necessary.

11.
Enter a Conference URI, if necessary.

12.
Select a Conference mode.

13.
Click Commit.

Alternatively, the Lync Server Management Shell can be used to create a location policy:

New-CsLocationPolicy –Identity <Name> -ConferenceMode <Oneway | Twoway>
-ConferenceUri <SIP URI to conference in to calls> -EmergencyDialMask <Dial
Masks, semi-colon separated> -EmergencyDialString <Dial String for Emergency
Services> -EnhancedEmergencyServicesEnabled <$True | $False>
-LocationRequired <No | Yes | Disclaimer> -NotificationUri <SIP URI to
notify> -PstnUsage <PSTN Usage for Routing> -UseLocationForE911Only <$True |
$False>

Note

An emergency voice route must be created in Lync and an applicable PSTN usage associated with users to successfully send emergency calls using E-911.

 
Others
 
- Microsoft Lync Server 2010 : Enterprise Voice - Media Bypass
- Exchange Server 2010 : Object-Oriented Use of PowerShell (part 2) - Formatting Output, Directing Output to Other Cmdlets
- Exchange Server 2010 : Object-Oriented Use of PowerShell (part 1) - Filtering Output
- Exchange Server 2010 : Introduction to PowerShell and the Exchange Management Shell - Understanding the Command Syntax
- Windows 8 : Controlling Access to Files and Folders with NTFS Permissions (part 5) - Determining the Effective Permissions and Troubleshooting
- Windows 8 : Controlling Access to Files and Folders with NTFS Permissions (part 4) - Applying Permissions Through Inheritance
- Windows 8 : Controlling Access to Files and Folders with NTFS Permissions (part 3) - Assigning Claims-Based Permissions, File Ownership and Permission Assignment
- Windows 8 : Controlling Access to Files and Folders with NTFS Permissions (part 2) - Assigning Special Permissions
- Windows 8 : Controlling Access to Files and Folders with NTFS Permissions (part 1) - Understanding and Using Basic Permissions
- Windows 8 : Managing File Security and Resource Sharing - File Security and Sharing Options
 
 
Top 10
 
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 2) - Wireframes,Legends
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 1) - Swimlanes
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Formatting and sizing lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Adding shapes to lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Sizing containers
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 3) - The Other Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 2) - The Data Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 1) - The Format Properties of a Control
- Microsoft Access 2010 : Form Properties and Why Should You Use Them - Working with the Properties Window
- Microsoft Visio 2013 : Using the Organization Chart Wizard with new data
Technology FAQ
- Is possible to just to use a wireless router to extend wireless access to wireless access points?
- Ruby - Insert Struct to MySql
- how to find my Symantec pcAnywhere serial number
- About direct X / Open GL issue
- How to determine eclipse version?
- What SAN cert Exchange 2010 for UM, OA?
- How do I populate a SQL Express table from Excel file?
- code for express check out with Paypal.
- Problem with Templated User Control
- ShellExecute SW_HIDE
programming4us programming4us