Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Block Inbound Number 1

Status
Not open for further replies.

dennislyon

IS-IT--Management
Feb 20, 2007
59
US
Can anyone tell me how to block in inbound number? Our news desk is getting blasted with calls from a fax machine at least 30 times a day and callers can't get thru because the line stays tied up with this garbage. Maybe others have seen this before, the number is 305-356-2997. Thanks for any help you can provide.
 
there is no way to block it... you have to call the CO and sometimes they can, otherwise you may have to change the number, or get a hold of the company sending the faxes....
 
dennislyon
From your previous posts it appears you have symposium.
Not sure if your news desk number is already routed through symposium, but if it is then you can easily have the script route calls based on the CLID of the calling number.
Something like
IF CLID = 3053562997 THEN
GIVE BUSY
END IF

Instead of GIVE BUSY you could also use a RAN or maybe route the call to an annoucement.
 
When a call comes in from a fax transfer it to a fax so you can see what it is...if you want.Your telco provider should be able to put a block on the number.
 
In Symposium, in script variables for CLID I created number_blocked and I add, as values, all the numbers I want blocked. This is in my master script.

IF CLID = number_blocked
THEN DISCONNECT
END IF


Matt
CS1000E VoIP
CCM 6
CallParrot
CallPilot
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top