3 Filters

This chapter provides a high level description of NPP Filters.

When a service calls NPP to process an incoming digit string, an NPP Filter is used to determine that the digit string will be processed by NPP.

3.1 Filters

NPP uses Filters to identify incoming digit strings that need NPP processing for a service. When a digit string matches a defined filter, the digit string is processed by NPP. If the digit string does not match a Filter, the digit string exits NPP as it originally entered.

An NPP Filter is composed of the following three components:
  • Filter Nature of Address Indicator (FNAI) class - maps to generic (international, national, and unknown) and service-specific NAI values for determining applicable digit string formatting.

  • Filter Prefix (FPFX) - Hexadecimal digit string pattern or prefix that can occur at the beginning of an incoming digit string. See section Searching NPP Filters with Wildcard Values for more information about wildcard values.
    • Can be a wildcard (*) value to indicate that all digits match the Filter.
    • When the NPP Unlimited SDWC Chars feature is turned on, can contain up to 3 single digit wildcard characters (?) in the first 6 digits, to indicate that any digit in that position in the string is a match. (The last digit cannot contain a single digit wildcard character if the string is less than or equal to six digits.)
    • When the NPP Unlimited SDWC Chars feature is turned off, can contain single digit wild card characters (?) in any positions except the last digit, to indicate that any digit in that position in the string is a match.
    • Can contain single digit wildcard characters (?) in any positions except the last digit, to indicate that any digit in that position in the string is a match.
    • Can contain up to 3 single digit wildcard characters (?) in the first 6 digits, to indicate that any digit in that position in the string is a match.
  • Filter Digit Length (FDL) - The number of digits that the incoming digit string must have to match the Filter. Can be a wildcard (*) value to indicate a Filter match for any digit length.

For NPP filter examples and scenarios, see Filter Examples and Filter Search Execution.

3.1.1 Filter Nature of Address Indicator (FNAI) Class

Many EAGLE protocols infer digit string formatting based on a protocol-specific Nature of Address Indicator (NAI) value. NPP uses this same concept to help isolate digit strings. NPP defines NPP-specific FNAI Classes to which services can map service-specific NAI values.

Services that invoke NPP processing provide an incoming NAI value along with the incoming digit string. NPP maps the incoming service-specific NAI value to an appropriate NPP FNAI Class mnemonic value.

NPP supports six different FNAI Classes:

  • NATL (national)
  • INTL (international)
  • NAI1 (generic1)
  • NAI2 (generic2)
  • NAI3 (generic3)
  • UNKN (Unknown)

The execution of the NAI-to-FNAI Class algorithm is described in Figure 3-1. Any NAI value not mapped to an FNAI Class is interpreted as UNKN (Unknown). If support is not needed for an FNAI Class, the FNAI Class value is NONE.

Figure 3-1 NAI to FNAI Mapping Algorithm

img/c_nai_to_fnai_mapping_algorithm_npp_guide.jpg

3.1.2 Filter Prefix

Many EAGLE features search for matching digit patterns at the beginning of digit strings to determine if processing is required. NPP provides this function with a Filter Prefix (FPFX).

An FPFX value can be a hexadecimal string of digits that are located at the beginning of an incoming digit string, such as d, 919, 060, or 9090). For example, the incoming digit string 00152558776925 would match a Filter Prefix (FPFX) of 001.

An FPFX value can be a wildcard (*) to match any leading digit string.

When the NPP Unlimited SDWC Chars feature is turned on, an FPFX value can be a series of hexadecimal digits that includes up to 3 single digit wildcard characters (?) in the first 6 digits of the string (except the last digit if the string is less than or equal to six digits). For example, the incoming digit strings 00152559776925 and 00252559886925 would match a Filter Prefix of 00?525.

When the NPP Unlimited SDWC Chars feature is turned off, an FPFX value can be a series of hexadecimal digits that includes single digit wildcard characters (?) in any positions except the last digit of the string. The total number of single digit wildcard characters used in all of the filters in the Service Rule Set for a service cannot exceed 25.

An FPFX value can be a series of hexadecimal digits that includes up to 3 single digit wildcard characters (?) in the first 6 digits of the string. For example, the incoming digit strings 00152559776925 and 00252559886925 would match a Filter Prefix of 00?525.

An FPFX value can be a series of hexadecimal digits that includes single digit wildcard characters (?) in any positions except the last digit of the string. The total number of single digit wildcard characters used in all of the filters in the Service Rule Set for a service cannot exceed 25.

When the FPFX filter parameter is defined in NPP, the leading incoming digit pattern must match the FPFX filter value for further NPP processing. See Searching NPP Filters with Wildcard Values for wildcard descriptions and examples.

3.1.3 Filter Digit Length

NPP provides digit string isolation based on the incoming length of the digit string. The NPP Filter Digit Length (FDL) specifies the number of digits that the incoming digit string must have to match the Filter.

An FDL value can be a wildcard (*) to match a digit string of any length.

3.2 Filter Search Execution

NPP uses Filters to identify incoming digit strings that need NPP processing for a service. When a digit string matches a defined Filter, the digit string is processed by NPP. If the digit string does not match a Filter, the digit string exits NPP as it originally entered.

NPP first consider the Filter NAI (FNAI), then Filter Prefix (FPFX), then the Filter Digit Length (FDL) when searching for a Filter match to the incoming digit string.

Table 3-1 specifies the order in which the matching algorithm searches for a Filter match to the incoming digit string.

Table 3-1 Filter Match Search Order

Search Order FNAI [NATL, INTL, UNKN, NA1...3] FPFX FDL
1 Specific Specific Specific
2 Specific Specific Wildcard (*)
3 Specific Wildcard (*) Specific
4 Specific Wildcard (*) Wildcard (*)

3.2.1 Filter Examples

Table 3-2 illustrates NPP Filters, some with values for all components and some with wildcard values.

Table 3-2 NPP Filter Examples

Filter Nature of Address Indicator (FNAI) Class Filter Prefix (FPFX) Filter Digit Length (FDL)
INTL 9090 8
INTL 060 12
NATL * 8
INTL d *
INTL * *
NAI1 919 *
UNKN * *
INTL abc?3 16
INTL abc?23 *

The following examples illustrate some specific NPP Filter scenarios:

  • All standard national calls receive the same handling where NAI=NATL, digits XXXXXXXXXX
    • FNAI = NATL
    • FPFX = *
    • FDL = *
  • International calls with International Escape Code where NAI=INTL, digits 011+XXXXXXXXXXXX
    • FNAI = INTL
    • FPFX = 011
    • FDL = *
  • Collect calls with Operator Code, Area Code following the Operator Code, NAI=Unknown, digits 'b'+AC+9090+XXXXXXXX
    • FNAI = UNKNOWN
    • FPFX = b (or FPFX = b339090 or FPFX=b349090, and so on -- there are many options for this configuration)
    • FDL = 15

3.2.2 Searching NPP Filters with Wildcard Values

Filters can be defined that have wildcard values for the Filter Prefix (FPFX) value, the Filter Digit Length (FDL) value, or both values.

When the FPFX or FDL value is the wildcard character (*) , the value is considered to be categorically wildcarded; it contains no characters other than the * character.

Filters can be defined with specific digit FPFX values that include one or more of the single digit wildcard character "?" along with hexadecimal digits in the value.

Categorical Wildcarding

There are three search cases where categorical wildcard values are used. In each case the search algorithm considers only NPP Filters that have the wildcard value specified for the Filter criteria. If no specific match is found, NPP then searches the NPP Filters that have FDL=*, then the Filters that have FPFX=*. When searching with wildcard values for FDL or FPFX, NPP considers only the NPP Filters that are provisioned with wildcard values. NPP Filters with specific values and no wildcard values for FDL or FPFX, are not considered during wildcard searches.

Table 3-4 indicates the example Filter that is selected for each Filter selection scenario shown in Table 3-3.

Table 3-3 NPP Provisioned Filter Examples for Categorical Wildcarding

Provisioned Filter FNAI FPFX FDL Notes
1 INTL abc 16 Specific, Specific, Specific
2 INTL abc123 16 Specific, Specific, Specific
3 INTL abc12 * Specific, Specific, Wildcard
4 INTL * 16 Specific, Wildcard, Specific
5 UNKN * * Specific, Wildcard, Wildcard

Table 3-4 NPP Filter Search for Categorical Wildcard Example Filters

Example Incoming FNAI Incoming Digit String Incoming Digit Length Example Filter Selected
1 INTL abcdef12345678901 16 1
2 INTL abc123def12345678 16 2
3 INTL abc2345678901def 16 1
4 INTL abc1234567890 13 3
5 INTL 0123456789abcdef 16 4
6 INTL 1234567890abcde 15 5

Single Digit Wildcarding

When the NPP Unlimited SDWC Chars feature is turned off, a A Filter Prefix can include single digit wildcard characters (?) in any positions except the last digit of the string. The number of single digit wildcard characters used in all of the filters in the Service Rule Set for a service cannot exceed 25.

When the NPP Unlimited SDWC Chars feature is turned on, a Filter Prefix can contain up to 3 single digit wildcard characters (?) in the first 6 digits, but not the last digit if the string is less than or equal to 6 digits. An unlimited number of SDWC characters are allowed for each NPP service.

Based on the presence of the single digit wildcard value “?” in the Filter Prefix (FPFX), the Filter with the larger number of matching leading digits not involving the “?” wildcard will have priority. If the number of matching leading digits is the same for two Filters, then Filter priorities are established as follows: A non-wildcard digit has the highest priority, followed by the “?” wildcard, with the lowest priority assigned to Filters with no further digits to match.

For example, if two Filters exist with FPFX values of 12345678 and 12?45?78. An incoming digit string of 123456789 would be filtered by FPFX=123456789. An incoming digit string of 12a456789 would be filtered by FPFX=12?4.

Table 3-6 indicates the example Rule that is selected for each Filter selection scenario from Table 3-5.

Table 3-5 NPP Provisioned Filter Examples for Single Digit Wildcarding

Provisioned Filter FNAI FPFX FDL Notes
1 INTL abc 16 specific, specific, specific
2 INTL abc123 16 specific, specific, specific
3 INTL abc12 * specific, specific, wildcard
4 INTL abc?3 16 specific, specific, specific
5 INTL abc?23 * specific, specific, wildcard
6 INTL * 16 specific, wildcard, specific
7 UNKN * * specific, wildcard, wildcard

Table 3-6 NPP Filter Search for Single Digit Wildcard Example Filters

Example Incoming FNAI Incoming Digit String Incoming Digit Length Filter Selected
1 INTL abcdef1234567890 16 1
2 INTL abc123def4567890 16 2
3 INTL abc2345678901def 16 4
4 INTL abc1234567890 13 3
5 INTL 0123456789abcdef 16 6
6 UNKN 1234567890abcde 15 7