Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Html
<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = 'https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.11';
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

...

Info

The Document describes how to configure and execute ENUM lookup on Wildix PBX.

Created: December 2018

Permalink: https://confluence.wildix.com/x/VwDwAQ

Table of Contents

ENUM Lookup

...

  1. Authenticate user 
  2. Set -> Caller number
  3. Custom application -> Set(DESTINATION=${ENUMLOOKUP(+39${EXTEN},sip,c,1,1,enum.myserver.com))}

    where

    • <ENUMLOOKUP> - the function that executes the lookup in enum.myserver.com
    • <+39> - the country code
    • <enum.myserver.com> - your ENUM server
  4. Custom application -> GotoIf($["${DESTINATION}" != "1"]?callsNotEnum,${EXTEN},1) 

    It is executed in case a phone number is not present in ENUM database

  5. Custom application -> Dial(SIP/MySIPTrunk/+39${EXTEN} 

    where

    • <MySIPTrunk> - a number that is dialed in case ENUMLOOKUP function is not executed because a lookup number is not present in ENUM database
  6. Trunk group -> route calls through the specified trunk group

...