Calls to emergency numbers

It is necessary to be able to call emergency numbers 112, 1xx

  1. Go to the RoutingOutbound routes section.

  1. Adding a new rule

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

  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.

  1. Go to System → System file customization

  1. Open the extensions.conf configuration file for editing.

  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)	

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