ADVANCED antispoofing
Abstract
Antispoofing advanced offers a dynamic approach for filtering incoming calls.
To be effective, this module requires information about the subscriber_Id, the last known entry point (gateway, route, PCV-orig) and the PAI number. The TELCO should insert this information in the CDRs generated for katia.
Operator should provide an unique subscriber_Id without exposing any confidential information for the real subscriber
Call blocking reason
SFSIF
CSV description
Example
antispoofing_advanced.txt is a five columns csv file
TARGET, KEYWORD, ORIGIN, FROM, PAI
all,reject,orig.A,0041*,0041*
Fields
# | name | VALUES | description | mandatory |
---|---|---|---|---|
1 | TARGET |
| Defines the scope of the rule | YES |
|
|
|
|
|
|
|
|
|
|
2 | KEYWORD |
| Action to take if the rule matches. | YES |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 | ORIGIN |
| Define if the rule applies to all ORIGIN or a specific ORIGIN | YES |
|
|
|
|
|
|
|
|
|
|
4 | FROM |
| How the match is done | YES |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 | PAI |
| if not empty the rule should also matches the PAI | NO |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
the wildcard * should never be used alone
In this situation the rule is invalid and not processed.
Processing order
specific subscriber
protect
allow
reject
anonymize
all subscribers
protect
allow
reject
anonymize
Rules examples
Example 1
subscriber.b,reject,orig.B,004179*,all # reject all mobile number from orig.B
subscriber.b,allow,orig.B,004179*,0041* # allow mobile numbers from orig.B if they starts with a Swiss PAI
Example 2
subscriber.c,reject,all,all,all # subscriber.c rejects all calls
subscriber.c,allow,orig.D,004179*,0041* # subscriber.c allows 004179* numbers from orig.D AND
# with a PAI starting with 0041*
Example 3
all,allow,all,0041219998877,all # the number 0041219998877 is allowed from everywhere for everybody
# except if a subscriber decides otherwise
subscriber.d,reject,orig.A,0041219998877,all # the number 0041219998877 is not allowed from the orig.A
subscriber.e,reject,orig.B,004121*,all # subscriber.e rejects all numbers starting with 004121* from orig.B
# number 0041219998877 is blocked from orig.B for subscriber.e
Example 4
all,protect,all,0041219998866,all # number is protected from everywhere
# except if the subscriber decides otherwise
# cf. processing order
subscriber.e,protect,all,0041219998877,all # number is protected from everywhere
# all calls with this number are accepted
subscriber.e,reject,orig.A,0041219998866,all # number 0041219998866 is not allowed from orig.A
subscriber.e,reject,orig.A,0041219998877,all # no effect. protect keyword is processed before reject
Example 5
all,protect,orig.A,0041219998866,all # number is protected from orig.A only
all,reject,all,0041219998866,all # number is rejected from everywhere except orig.A
Example 6
subscriber.e,protect,orig.A,all,all # subscriber.e accepts calls only from orig.A
# next check modules are skipped
subscriber.e,reject,all,all,all # calls not from orig.A are rejected
Example 7
subscriber.A,allow,orig.A,all,all # all numbers from orig.A are protected
# numbers can still be blocked by the next check modules
subscriber.A,reject,all,all,all # all numbers are rejected except from orig.A
Example 8
all,reject,orig.A,all,0041219998877 # reject all numbers matching the PAI 0041219998877
Example 9
all,allow,all,0041219998877 # allow number 0041219998877 from every orig
all,allow,all,0041219998877,all # allow number 0041219998877 from every orig and every PAI
# rule 1 an 2 provides the same result