Calls to emergency numbers

  1. Go to the RoutingOutbound routes section.

Outbound routing section
  1. Adding a new rule

New rule
  1. Fill in the parameters as in the screenshot below:

Parameters for emergency calls rule
  1. You direct calls to emergency numbers through an arbitrary provider. The provider must support dialing emergency numbers. The priority of this rule should be the highest, i.e. it should be described first in the list of created outgoing routes.

Priority of outbound routing
  1. Go to System → System file customization

System file ccustomization section
  1. Open the extensions.conf configuration file for editing.

extensions.conf file
  1. Set the "Add to end of file" mode. In the black window, add the following code snippet:

[internal](+)
exten => _1XX,1,Goto(outgoing,${EXTEN},1)	
Code for extensions.conf

In the above code snippet, we described the rules for all three-digit numbers starting with 1. If you need to specify specific emergency numbers, then instead of the above code, you need to insert the following lines:

[internal](+)
exten => 112,1,Goto(outgoing,${EXTEN},1)
exten => 101,1,Goto(outgoing,${EXTEN},1)
exten => 102,1,Goto(outgoing,${EXTEN},1)
exten => 103,1,Goto(outgoing,${EXTEN},1)

Last updated

Was this helpful?