Versions Compared

Key

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

...

Caption
0Table
1Numbering Plan Parameters

 

Parameter

Description

numberingPlan

Specifies numbering plan.

...

...

The numbering plans below are default plans, but you can also create your own numbering plans.

  • CHINA_NUM_PLAN
  • GENERIC_NUM_PLAN
  • GERMANY_NUM_PLAN
  • INDIA_NUM_PLAN
  • ITALY_NUM_PLAN
  • JAPAN_NUM_PLAN
  • MEXICO_NUM_PLAN
  • NANP_ACCESS
  • UK_NUM_PLAN

 

 

Note

The numbering plans above are default plans, but you can also create your own numbering plans.


lengths

The minimum and maximum lengths for various number types.

  • areaCode
  • exchangeCode
  • line
  • nationalNumber=
  • subscriberNumber


Maximum and minimum values for above parameters:

    • max <#> – Enter maximum value. (range: 0-999 / default = 4).
    • min <#> – Enter minimum value. (range: 0-999 / default = 4).

prefixProfile

Prefix profile name.

Prefix Profile Parameters

...

Caption
0Table
1Prefix Profile Parameters

 

Parameter

Description

prefixProfile

Prefix profile name. Enter a profile name or select from list of

...

default

...

profiles.

  • CHINA_DIAL_PLAN
  • GENERIC_DIAL_PLAN
  • GERMANY_DIAL_PLAN
  • ITALY_DIAL_PLAN
  • INDIA_DIAL_PLAN
  • JAPAN_DIAL_PLAN
  • MEXICO_DIAL_PLAN
  • NA_DIAL_PLAN
  • UK_DIAL_PLAN

 

 

Note

The prefix profiles above are default profiles. You may also create your own prefix profiles.


entry

Use this object to configure the Prefix Profile using the parameters below.

  • <matching pattern> – (up to 28 characters)
  • <match start location> – 0
  • <total min digits> – 3
  • <total max digits> – 3
  • applyDmRule – Enable to apply Dm/Pm Rule.
    • disable (default)
    • enable
  • callType – Select linear Call Type.
    • _private (default)
    • carrierCutThrough
    • internationalOperator
    • internationalType
    • ipVpnService
    • localOperator
    • longDistanceOperator
    • mobile
    • nationalOperator
    • nationalType
    • otherCarrierChosen
    • test
    • transit
    • userName
Note

Do not select _private option when provisioning Prefix Profile on ERE. Private call routing is not fully supported at this time.

 

  • determineArea – When this flag is enabled, the area code is determined from the analyzed digits.
    • disable (default)
    • enable
  • digitType – Select digit type (default = unknown

    900PremiumToll | 950CarrierAccess | carrierAccess | directoryAssistance |
    easilyIdentifiableNumber | emergency | governmentEmergency | ieps |
    international |
    internationalOperator | internetOffloadAnonymous |
    internetOffloadEconomy | internetOffloadPremium | internetOffloadStandard |
    internetReception |
    ipVpn | localOperator | longDistanceOperator | national |
    nationalOperator | noDigits | otherCarrierChosen | private | serviceAccessCode |
    subscriber |
    subscriberOperator | test | tollFree |transit | unknown | userName |
    verticalServiceCode

  • dmPmRule – Dm/Pm Rule identifier:
    • PAI_AND_FROM_HEADER
    • PAI_DISPLAY_NAMES_1_NTL
    • PAI_SIP_DSPNAME_CLG_NAM
    • PAI_TEL_DSPNAME_GN_CPN
    • PRFX_TO_HEADER_CDPN_NTL
    • PRFX_TO_HEADER_GDPN_NTL
    • PRFX_TO_HEADER_OCN_NTL
    • SIP_ADD_PLUS SIP_REMOVE_CLG81
    • SIP_REMOVE_PLUS1
    • SIP_REMOVE_PLUS39 SIP_REMOVE_PLUS44
    • SIP_REMOVE_PLUS49 SIP_REMOVE_PLUS52
    • SIP_REMOVE_PLUS81 SIP_REMOVE_PLUS86
    • SIP_REMOVE_PLUS91
  • natureOfAddress – Nature Of Address. 
  • 950 (default)
  • aniNotAvailableOrNotProvided
  • aniOfCalledPartyNationalNumber
  • aniOfCalledPartyNoNumberPresent
  • aniOfCalledPartySubscriberNumber
  • aniOfCallingPartyNationalNumber
  • aniOfCallingPartySubscriberNumber
  • anyapnNumberingPlan
  • ignore
  • international
  • internationalNotRestricted
  • internationalOperator
  • internationalRestricted
  • national
  • nationalNotRestricted
  • nationalOperator
  • nationalRestricted
  • networkSpecific
  • noNumberCutThrough
  • noNumberOperatorRequested
  • none
  • partialCallingLineId
  • passThrough
  • spare00...spare26
  • numberLeadingPrefixDigits <#> – Enter number of Leading Prefix Digits (range: 0-999 / default = 0).
  • numberLeadingPrefixDigitsToStrip <#> – Enter number of Leading Prefix Digits To Strip (range: 0-999 / default = 0).
  • numberingPlanIndicator – Numbering Plan Indicator.

data | ignore | isdn | none | offsetUnused | private | spare0Unknown | spare1 | spare2 |
spare3 | spare4 | spare5 | spare6 | spare7 | telephony | telex

Command Example

Code Block
languagenone
% show profiles digitParameterHandling  
	dmPmCriteria dmpm1 {  
		parameterPresenceCheck doesntExist;  
	}  
	dmPmRule rule1;  
	numberTranslationCriteria NTC none 2 2 3 4 {  
		lookupType enumSipAor;  
	}  
	numberingPlan CHINA_NUM_PLAN {  
		prefixProfile CHINA_DIAL_PLAN;  
		lengths {  
			nationalNumber {  
				min 8; 
				max 31;  
			}  
			subscriberNumber {  
				min 2;  
				max 7;  
			}  
			line {  
				min 4;  
				max 4;  
			}  
			exchangeCode {  
				min 3;  
				max 3; 
			}  
			areaCode {  
				min 2;  
				max 4;  
			} 
		 }  
	} 

...