Inbound DID not working

General and Support topics relating to ViciDialNow and GoAutoDial ISO installers

Moderators: enjay, williamconley, Op3r, Staydog, gardo, mflorell, MJCoate, mcargile, Kumba, s0lid

Inbound DID not working

Postby ccetech20 » Wed Jan 02, 2013 5:11 pm

Hi

First of all, thanks a tonne for the community to have such high participation and developers for making such extraordinary effort towards call center and telephony.

I have just go the setup installed and customized to our crm software. We have installed
GoAutoDial CE 2.1
Kernel 2.6.18-238.9.1.el5.goPAE (SMP)

ON:
Processors 4
Model Intel(R) Xeon(R) CPU E5504 @ 2.00GHz
CPU Speed 2 GHz
Cache Size 4.00 MB
System Bogomips 16000.2
Memory 7.33 GB Available


I read the manager's manual as well before posting. We have requirement to have inbound traffic from existing TOLLFREEFORWARDING(dot)COM.
Now as per my talk with outbound provider, he says if you have asterisk you can point your inbound traffic directly to your own server.

We have static IPs as well. However, I'm clueless as to how to enable my installation to have inbound calls land to our dialer straight away. I read that I need to create inbound group and DID. Which I copied using "copy from" command which is in installation itself.

I am unable to proceed as it is confusing me which dial plan to use? Also, in our case we do not have a provider for inbound but want that the calls from 7IP addresses that the tollfreeforwarding have given us to be received by the static IP of our server.


Please help.


Clarke
GoAutoDial CE 2.1
Kernel 2.6.18-238.9.1.el5.goPAE (SMP)
Processors 4 | Model Intel(R) Xeon(R) CPU E5504 @ 2.00GHz | Cache Size 4.00 MB | Memory 8 GB
ccetech20
 
Posts: 26
Joined: Thu Nov 08, 2012 2:46 pm

Re: Inbound DID not working

Postby striker » Thu Jan 03, 2013 3:56 am

go to asterisk cli and make sure your call is landing .

in vicidial trunkinbound is the the context used to receive the incomming call to land into dialler.

but you are dialling via static ip , so i hope it will come under the default context. if it is a registred trunk then u can mention the context.

so if the calls is landing inside the asterisk , then put the dialplan under the default context and create necessary DID route,ingroup,campaing

[default]
exten => _DIDnumber,1,AGI(agi-DID_route.agi)
www.striker24x7.com www.youtube.com/c/striker24x7 Telegram/skype id : striker24x7
striker
 
Posts: 962
Joined: Sun Jun 06, 2010 10:25 am

Re: Inbound DID not working

Postby ccetech20 » Thu Jan 03, 2013 4:07 am

Hi Striker

Thanks for your response.

I have created in-group and campaign to test.

However, what I am unable to understand is that while creating a TRUNK what should I be doing? For inbound calls, we are not using any voip provider as the current provider said that the calls can be terminated directly to your servers since you have a static IP in Dialer. Also, tollfreeforwarding is giving us 7 static IP from where calls will originate and land in our system.

Now we want the ability to have it routed to agents screen with relevant information if at all it is in CRM or ELSE a new entry. [I guess CID should work as route handling in this case].
GoAutoDial CE 2.1
Kernel 2.6.18-238.9.1.el5.goPAE (SMP)
Processors 4 | Model Intel(R) Xeon(R) CPU E5504 @ 2.00GHz | Cache Size 4.00 MB | Memory 8 GB
ccetech20
 
Posts: 26
Joined: Thu Nov 08, 2012 2:46 pm

Re: Inbound DID not working

Postby striker » Thu Jan 03, 2013 4:23 am

as you said call directly terminated to the ip ,
so i hope call will land directly to the default context.


put the below line under the default context in /etc/asterisk/extensions.conf
exten => _DIDnumber,1,AGI(agi-DID_route.agi)

go to asterisk cli command : asterisk -vvvvvvr
and dial the incomming tollfree no, you can see some call flow , if not then u need to check with your provider.
www.striker24x7.com www.youtube.com/c/striker24x7 Telegram/skype id : striker24x7
striker
 
Posts: 962
Joined: Sun Jun 06, 2010 10:25 am

Re: Inbound DID not working

Postby ccetech20 » Thu Jan 03, 2013 4:36 am

So this is what I follow from above post:

at the tollfree provider end I put username@static ip so that it can be forwarded.

At our end:
Make Campaign -- Done
Make DID number with DID Extension as tollfree number
exten => _TOLLFREENUMBER,1,AGI(agi-DID_route.agi)

Right?
GoAutoDial CE 2.1
Kernel 2.6.18-238.9.1.el5.goPAE (SMP)
Processors 4 | Model Intel(R) Xeon(R) CPU E5504 @ 2.00GHz | Cache Size 4.00 MB | Memory 8 GB
ccetech20
 
Posts: 26
Joined: Thu Nov 08, 2012 2:46 pm

Re: Inbound DID not working

Postby ccetech20 » Fri Jan 04, 2013 5:09 am

anyone?


TIA
GoAutoDial CE 2.1
Kernel 2.6.18-238.9.1.el5.goPAE (SMP)
Processors 4 | Model Intel(R) Xeon(R) CPU E5504 @ 2.00GHz | Cache Size 4.00 MB | Memory 8 GB
ccetech20
 
Posts: 26
Joined: Thu Nov 08, 2012 2:46 pm

Re: Inbound DID not working

Postby ctc_olsen » Sun Jan 06, 2013 10:30 am

Hi bud. I was in the same spot as you months ago, as William helped me, now I'm returning the favor of helping somebody too. The idea is to set up a a dial plan entry so VICIDIAL would know what to do once a call comes in. I can only show you the fundamentals, but you need figure this out on your own. You need to

1. Admin - Carriers - Set up Account entry, this will create a peer to your provider. More like a session. Our exact config below. Search for other examples online.

Code: Select all
[xxxxxxxxxx]
disallow=all
allow=alaw
allow=ulaw
type=peer
host=x.x.x.x   -IP
dtmfmode=rfc2833
canreinvite=no
qualify=4000


2. Create a dial plan entry. This is to let the vicidial know on what to do when a call comes in. Our exact config below. Search for other examples online.

exten => _981XXXXXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _981XXXXXXXXXX,2,Dial(${SIPTRUNKA}/${EXTEN:2},,tTor)
exten => _981XXXXXXXXXX,3,Hangup

Go to a sample campaign and set 98 for "Dial Prefix" and Omit Phone Code to no.
Last edited by ctc_olsen on Sun Jan 06, 2013 3:37 pm, edited 1 time in total.
VERSION: 2.4-309a BUILD: 110430-1642 (Upgrade from CE 2.0,ISO) | Asterisk 1.4.27.1-1 | VmWare vCenter Server Ver 4.1.0| No additional software | No Digium/Sangoma Hardware
ctc_olsen
 
Posts: 65
Joined: Tue Jul 24, 2012 7:34 am

Re: Inbound DID not working

Postby ccetech20 » Sun Jan 06, 2013 12:37 pm

Thanks Olsen.

How do I work around the part where it says: registration string?
GoAutoDial CE 2.1
Kernel 2.6.18-238.9.1.el5.goPAE (SMP)
Processors 4 | Model Intel(R) Xeon(R) CPU E5504 @ 2.00GHz | Cache Size 4.00 MB | Memory 8 GB
ccetech20
 
Posts: 26
Joined: Thu Nov 08, 2012 2:46 pm

Re: Inbound DID not working

Postby ctc_olsen » Sun Jan 06, 2013 3:09 pm

Registration String - This field is where you can enter in the exact string needed in the IAX or SIP configuration file to register to the provider. Optional but highly recommended if your carrier allows registration.

Usually its blank but very it with your provider. let us know how this works out for you.
VERSION: 2.4-309a BUILD: 110430-1642 (Upgrade from CE 2.0,ISO) | Asterisk 1.4.27.1-1 | VmWare vCenter Server Ver 4.1.0| No additional software | No Digium/Sangoma Hardware
ctc_olsen
 
Posts: 65
Joined: Tue Jul 24, 2012 7:34 am

Re: Inbound DID not working

Postby ccetech20 » Sun Jan 06, 2013 3:22 pm

Scenario:
We have tollfree from a provider and 3 DID numbers. Our ISP has given us static IP address as well.

Now someone told me that with vicidial I can configure inbound numbers directly, that means I do not have to pay for airtime/channel to anyone else. Essentially, this would mean that the provider will forward the TollFree over to my static ip. He says all he needs is SIP address in following form anything@ipaddress.
GoAutoDial CE 2.1
Kernel 2.6.18-238.9.1.el5.goPAE (SMP)
Processors 4 | Model Intel(R) Xeon(R) CPU E5504 @ 2.00GHz | Cache Size 4.00 MB | Memory 8 GB
ccetech20
 
Posts: 26
Joined: Thu Nov 08, 2012 2:46 pm

Re: Inbound DID not working

Postby williamconley » Mon Feb 18, 2013 4:47 pm

In case you did not know it: a Toll Free Number is also a DID. And to Vicidial, there is no discernable difference at all. The manager's manual covers setup of a DID, these instructions apply equally to 800NXXXXXX as they do to NXXNXXXXXX and of course 866NXXXXXX and 877NXXXXXX (ie: All Toll Frees just like all regular DIDs). Vicidial neither knows that there is a difference nor cares.
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Inbound DID not working

Postby ccetech20 » Sat Mar 16, 2013 4:12 am

Finally!

Its all working now. Thanks all.

@William, manual and the heads up helped :)
GoAutoDial CE 2.1
Kernel 2.6.18-238.9.1.el5.goPAE (SMP)
Processors 4 | Model Intel(R) Xeon(R) CPU E5504 @ 2.00GHz | Cache Size 4.00 MB | Memory 8 GB
ccetech20
 
Posts: 26
Joined: Thu Nov 08, 2012 2:46 pm

Re: Inbound DID not working

Postby williamconley » Sat Mar 16, 2013 9:35 am

cool. now go make some $$ and then come back and help newbies. :)
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Inbound DID not working

Postby sana1990 » Tue Apr 09, 2013 11:33 am

ccetech20 wrote:So this is what I follow from above post:

at the tollfree provider end I put username@static ip so that it can be forwarded.

At our end:
Make Campaign -- Done
Make DID number with DID Extension as tollfree number
exten => _TOLLFREENUMBER,1,AGI(agi-DID_route.agi)

Right?
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby sana1990 » Tue Apr 09, 2013 12:25 pm

i have same problem , i bought a number from toll free forwarding but i don't have idea that how to configure the trunk setting
plz give some suggestion thank you
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby williamconley » Tue Apr 09, 2013 1:11 pm

Welcome to the Party! 8-)

toll free forwarding means you must forward the toll free number to a DID. from another provider. then you would provision that DID into your vicidial system from the other provider. But now you're paying for the call twice.

regardless of all that: To use Vicidial you would start with the Vicidial Manager's Manual available at EFLO.net. Download at least the free version and begin at page one. When you have completed ALL the exercises in the book, you'll probably not have any other questions! However, if you do have a problem, you can bring us the Manual Version, Manual Page, and Line number and your actual error, copied and pasted, and we'll walk you through it. :)

And since you're obviously a newbie and trying hard, here are your newbie suggestions:

when you post, please post your entire configuration including (but not limited to) your installation method and vicidial version with build.

this IS a requirement for posting along with reading the stickies (at the top of each forum) and the manager's manual (available on EFLO.net, both free and paid versions)

You should also post: Asterisk version, telephony hardware (model number is helpful here), cluster information if you have one, and whether any other software is installed in the box. If your installation method is "from scratch" you must post your operating system and should also post the .iso version from which you installed your original operating system. If your installation is "Hosted" list the site name of the host.

If this is a "Cloud" or "Virtual" server, please note the technology involved along with the version of that techology (ie: VMware Server Version 2.0.2). If it is not, merely stating the Motherboard model # and CPU would be helpful.

Similar to This:

Vicibox X.X from .iso | Vicidial X.X.X-XXX Build XXXXXX-XXXX | Asterisk X.X.X | Single Server | No Digium/Sangoma Hardware | No Extra Software After Installation | Intel DG35EC | Core2Quad Q6600
___________________

Happy Hunting! 8-)
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Inbound DID not working

Postby sana1990 » Fri Apr 12, 2013 6:24 pm

sir i do every thing but when i login it show me...... Sorry, your phone login and password are not active in this system, please try again:
plz tell me why it is happen? thank you
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby sana1990 » Fri Apr 12, 2013 6:34 pm

register string- 111@107.159.0.129
My carrier set up:
[mydivert]
type=friend
host=107.159.0.129
context=trunkinbound
allow=alaw
canreinvite = no
qualify = yes

dial plan:

exten=>_91NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten=>_91NXXNXXXXXX,n,Dial(${DIAL9TRUNK}/${EXTEN:1},,To)
exten=>_91NXXNXXXXXX,n,Hangup
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby sana1990 » Fri Apr 12, 2013 6:37 pm

plz reply williamconley
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby williamconley » Fri Apr 12, 2013 8:29 pm

sana1990 wrote:sir i do every thing but when i login it show me...... Sorry, your phone login and password are not active in this system, please try again:
plz tell me why it is happen? thank you

Your phone login is on the Admin->Phones->(choose a phone), field name "Agent Screen Login" and the password is "Login Password". Many people use the User login and pass where the phone login and pass belong. The phone must also be active, of course. :)
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Inbound DID not working

Postby sana1990 » Sat Apr 13, 2013 10:42 am

Sorry, there are no available sessions
Login:agent001
Password:goautodial
Campaign:xxxxxxx
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby sana1990 » Sat Apr 13, 2013 10:50 am

it show when i login in with agent webclient

Sorry, there are no available sessions
Login:agent001
Password:goautodial
Campaign:xxxxxxx



my carrier setting


MODIFY A CARRIER RECORD: INET_CARRIER
Carrier ID: INET_CARRIER
Carrier Name: xxx
Carrier Description: xxxx
Registration String: xxxx
Template ID: xxxx
Account Entry: [INET_CARRIER]
disallow=all
allow=g729
allow=gsm
allow=ulaw
type=friend
host=216.52.221.140
dtmfmode=rfc2833
context=trunkinbound

Protocol: sip

Globals String:

Dialplan Entry: exten => _8777865099,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _8777865099,2,Dial(${111@107.6.13.173}/${EXTEN:2},,tTor)
exten => _8777865099,3,Hangup HELP
Server IP: xxxxxxxx
Active: yes
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby sana1990 » Sat Apr 13, 2013 10:51 am

plz reply williamconley
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby sana1990 » Sat Apr 13, 2013 12:31 pm

I RESOLVE IT BUT NOW SHOW ANOTHER ERROR LIKE
WHEN I LOGIN
There is a time synchronization problem with your system, please tell your system administrator


Go Back
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby williamconley » Sat Apr 13, 2013 7:36 pm

sana1990 wrote:I RESOLVE IT BUT NOW SHOW ANOTHER ERROR LIKE
WHEN I LOGIN
There is a time synchronization problem with your system, please tell your system administrator


Go Back

when you have a new error, you should create a new post topic with that error (after searching for this error in the forums directly and/or via google).

did you change the IP of your server after you built it?
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Inbound DID not working

Postby sana1990 » Sun Apr 14, 2013 9:39 am

yes but it show same error
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby williamconley » Sun Apr 14, 2013 10:14 pm

sana1990 wrote:yes but it show same error

somehow i doubt that. your old error was a problem with a did, but now you have a time sync error. plus you did not answer my question. i also get the general impression that you have not searched the forums for another user with the same error so you could learn how to fix it. it's a fairly common error with some fairly common causes. which is why i asked the question i asked ... happy to help, but you gotta do your part or we're kinda stuck. (like asking the mechanic to fix your car ... and never bothering to bring it to the shop!)
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Inbound DID not working

Postby sana1990 » Tue Apr 16, 2013 9:16 am

if i have static ip then i no need to configure carrier setting for inbound call plz reply williamconley
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby williamconley » Tue Apr 16, 2013 10:21 am

sana1990 wrote:if i have static ip then i no need to configure carrier setting for inbound call plz reply williamconley

carrier settings are not affected by the "status" vs "dynamic" nature of an ip address.

but you still have not answered whether you changed your IP address ... or do you have a different problem you are trying to address now?
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Inbound DID not working

Postby sana1990 » Wed Apr 17, 2013 10:38 am

williamconley i said i done every thing but i want to know that if my voip provider provide me a static ip like aything@yourip
so then i will configure my tollfree number in DID entry in extension .conf
exten => your DID,1,AGI(agi-DID_route.agi)
then do i need to configure my carrier setting? plz reply
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby williamconley » Wed Apr 17, 2013 1:26 pm

sana1990 wrote:williamconley i said i done every thing but i want to know that if my voip provider provide me a static ip like aything@yourip
so then i will configure my tollfree number in DID entry in extension .conf
exten => your DID,1,AGI(agi-DID_route.agi)
then do i need to configure my carrier setting? plz reply

1) voip providers do not provide a static ip to you (in fact, they provide nothing except a DID). Although they may provide you with THEIR IP, which you would use in the Admin->Carrier settings to properly configure the inbound carrier.
2) start at the beginning of the Vicidial Manager's Manual and do not skip any exercises. Of course, if you do skip something you'll end up here asking for support for something that's in the manual ... LOL (I do believe that configuring a DID is included in the manual so ...)
3) if you follow the manual to configure inbound DID routing, it will work. and it will not involve modifying any .conf files. If you complete the inbound DID exercise in the manual and you have a problem, bring us the Manual Version, Page Number, Line Number and a detailed description of the problem ... and we'll walk you through it. 8-)
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Inbound DID not working

Postby sana1990 » Wed Apr 17, 2013 10:16 pm

how to upload agent-UI-06112011.fix.tar.gz in go auto dial
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby williamconley » Wed Apr 17, 2013 10:36 pm

sana1990 wrote:how to upload agent-UI-06112011.fix.tar.gz in go auto dial

you're just all over the place today aren't you. LOL

i've never patched a goautodial box (we generally just "fresh install" for a clean system).

but I will say that gardo is usually very careful about having documentation available for this sort of thing on his site (goautodial.org). I believe the site has a wiki on it with documentation for this very purpose.

oh: and you should really create a new thread instead of continually asking fresh, unrelated questions on an existing thread. just sayin' 8-)
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Inbound DID not working

Postby sana1990 » Thu Apr 18, 2013 2:14 am

can i ask one Q.
about go auto dial
if my internet provide provide me static ip then i need to add carrier setting
and my tollfree provide me this type of service
Enter the SIP address you’ve setup in your SIP system into the Ring-To field.
The SIP address must match the address setup in your SIP system - userpart@host/domainpart.

For example:
anything@yourIPaddress
or
anything@yourdomain.com


Manage Phone Numbers>Phone Numbers – Call Action (New)>Call Forwarding>Create New Ring-To


Ring-to Notes:
• IP addresses can have fewer numbers (like 1.2.3.4) but always have four sets of numbers separated by three periods.
• Domains can be as varied as any email address and do not need to end in ‘com’. They can end in .uk or .net or .org or anything that the customer specifies.
• Ensure no spaces: user name @domain.com
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby williamconley » Thu Apr 18, 2013 6:08 pm

you would just use your IP address instead of a domain name.

it does not matter whether it is static or dynamic, as long as you change it in their system whenever you get a new IP.

you would likely use something like this:

77777@111.111.111.111

where 77777 is a DID you set up in your system (under "inbound->DIDs") and 111.111.111.111 is replaced with your IP address. Domain is not necessary for inbound calls to Vicidial. Although I've never tested this exactly. :)
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Inbound DID not working

Postby sana1990 » Fri Apr 19, 2013 5:14 pm

my tollfree number is 18777865099 how to set in in did plz told me
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby sana1990 » Fri Apr 19, 2013 5:17 pm

and plz explain it (under "inbound->DIDs")
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby williamconley » Fri Apr 19, 2013 11:05 pm

that is what the manual is for. have you downloaded and worked all the way through the Vicidial Manager's Manual? this would be a "carrier" for inbound calls and that carrier would be providing a DID.

you'll need to create a DID for 18777865099 and/or one for 8777865099, depending on which one the carrier sends. but you can always find that out by watching the asterisk CLI during an inbound phone call to see what values are being sent to you.

if you at least get SOME activity on the asterisk cli during an inbound call, it will eventually work. :)

to get the asterisk cli:

Code: Select all
asterisk -R


if you do not see any activity during an inbound call attempt, you can turn on debugging with

Code: Select all
sip set debug


or

Code: Select all
sip set debug on


depending on your asterisk version.
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Inbound DID not working

Postby sana1990 » Sat Apr 20, 2013 12:09 am

sir as i say to you. i have bought a number from tollfreeforwarding.com plz tell me how to setup carrier with these detail and how my call in route plz sir

i ready to pay
Last edited by sana1990 on Sat Apr 20, 2013 4:08 am, edited 1 time in total.
sana1990
 
Posts: 22
Joined: Thu Apr 04, 2013 2:45 am

Re: Inbound DID not working

Postby williamconley » Sat Apr 20, 2013 12:51 am

at this point, i would recommend you pay someone to configure it for you. we only charge $25. i'm sure others have similarly low fees for this.

i say this because you just asked the "base" question which is from several questions ago in this thread. unfortunately, we do not ever deal with that particular provider, so i can't just give you instructions.

if you were to provide a sample from that carrier's "suggested asterisk settings", I may be able to help. but otherwise we seem to be running in circles.

but here we go:

First phase is to get the call to arrive at your vicidial server. do they have a web interface that will allow you to "point" the Toll Free Number to your Vicidial server in some fashion?
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20253
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Next

Return to ViciDialNow - GoAutoDial

Who is online

Users browsing this forum: No registered users and 73 guests