No account yet? Create one
Forgot your Username or Password?

Welcome to the Voxilla VoIP Forum.

Voxilla has been a trusted source for accurate, up-to-date information on the IP Communications industry since 2002. A dedicated staff of reporters and engineers produce feature articles and product reviews to keep industry watchers abreast of the people, companies, and trends driving a fast moving market.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.





Reply
 
LinkBack Thread Tools Rate Thread Display Modes
  #1 (permalink)  
Old February 19th, 2008, 06:52 PM
thoule thoule is offline
Junior Member
 
Join Date: Oct 2006
Posts: 8
thoule is on a distinguished road
Default Caller ID

When I get an incoming call, the caller ID is the town/city instead of the person's name. I have Vonage forward the call to IPKall and also ring my Vonage line (simulring). My Vonage line has the correct Caller ID info, but IPKall tells me its a call from "Middletown, CT" instead of "Bob Jones". Where is this town/city coming from"
thanks
Todd
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old February 20th, 2008, 10:36 PM
konu konu is offline
Junior Member
 
Join Date: Sep 2007
Posts: 3
konu is on a distinguished road
Default Re: Caller ID

This is my guess:

In order to associate a person's name with a phone number, a LIDB/CNAM database must be queried and each such query usually costs money. Associating a city with a phone number, on the other hand, is possible by consulting free databases such as those provided by NANPA, http://nanpa.com/.

Most likely, to keep costs low, IPKall does not perform LIDB/CNAM database lookups whereas Vonage, being a "full-service" provider, does.

If you want a CallerID name with every incoming call to your IPKall number, then you can use a third-party LIDB/CNAM database provider. voip-info.org's CNAM page, http://www.voip-info.org/wiki/view/CNAM, lists http://cnam.info/ as one such provider.

An alternative solution would be to use a local database in conjunction with web-based information. If you use Asterisk, there is, for example: http://www.monetra.com/~brad/callerid_shell.agi

Hope this helps (and that I'm not wrong!)

K
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old February 22nd, 2008, 12:51 PM
thoule thoule is offline
Junior Member
 
Join Date: Oct 2006
Posts: 8
thoule is on a distinguished road
Default Re: Caller ID

Yes, I'm using Asterisk. That script worked perfectly. Thanks!
Todd
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old February 25th, 2008, 04:43 AM
jason_m jason_m is offline
Junior Member
 
Join Date: Apr 2007
Posts: 12
jason_m is on a distinguished road
Default Re: Caller ID

Grandcentral totally depends on each name having to be entered into the address book for it to show on the callerid. This means 90 percent of my icoming calls do not show the name. Grandcentral tech support never could give me an explanation. Well this certainly sheds some light on the issue!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old February 26th, 2008, 02:08 AM
kwiniarz kwiniarz is offline
Junior Member
 
Join Date: Feb 2008
Posts: 3
kwiniarz is on a distinguished road
Default Re: Caller ID

Hi guys, i tired using the script found at http://www.monetra.com/~brad/callerid_shell.agi and i'm still not able to get the caller name to show up

From the CLI here is what my AGI debugger says

I dial my ext and this is what shows up

AGI Debugging Enabled
AGI Tx >> agi_request: calleridname.agi
AGI Tx >> agi_channel: Zap/19-1
AGI Tx >> agi_language: en
AGI Tx >> agi_type: Zap
AGI Tx >> agi_uniqueid: 1203994534.22
AGI Tx >> agi_callerid: XXXXXXXXXX
AGI Tx >> agi_calleridname: unknown
AGI Tx >> agi_callingpres: 3
AGI Tx >> agi_callingani2: 0
AGI Tx >> agi_callington: 33
AGI Tx >> agi_callingtns: 0
AGI Tx >> agi_dnid:
AGI Tx >> agi_rdnis: XXXXXXXXXX
AGI Tx >> agi_context: default
AGI Tx >> agi_extension: XXXXXXXXXX
AGI Tx >> agi_priority: 2
AGI Tx >> agi_enhanced: 0.0
AGI Tx >> agi_accountcode:

i'm trying to use 411 reverse lookup. I'm running Asterisk 1.4.11 on FreeBSD I changed the path to Curl since that was different.

So far i've added it to only my extension for testing
Here is my extention.conf portion

exten => Kris,1,Goto(222|1)
exten => 222,1,AGI(callerid_shell.agi|${CALLERIDNUM})
exten => 222,2,NoOp(AGI Returned ${lookupname})
exten => 222,3,Set(CALLERID(name)=${lookupname})
exten => 222,4,SetMusicOnHold(kris)
exten => 222,5,Set(DYNAMIC_FEATURES=automon)
exten => 222,6,Dial(SIP/kris,15,gtrwWM)
exten => 222,n,GotoIf($["${DIALSTATUS}" = "BUSY"]?busy:unavail)
exten => 222,n(unavail),Voicemail(222@default,u)
exten => 222,n,HangUp()
exten => 222,n(busy),Voicemail(222@default,b)
exten => 222,n,HangUp()
exten => 1222,1,VoiceMailMain(222@default)


any help would be appreciated
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 26th, 2008, 02:08 AM
Linksys Voice System 9000
  #6 (permalink)  
Old February 26th, 2008, 08:35 PM
konu konu is offline
Junior Member
 
Join Date: Sep 2007
Posts: 3
konu is on a distinguished road
Default Re: Caller ID

Quote:
Originally Posted by kwiniarz View Post
... I'm still not able to get the caller name to show up... I'm running Asterisk 1.4...

exten => Kris,1,Goto(222|1)
exten => 222,1,AGI(callerid_shell.agi|${CALLERIDNUM})
...
Maybe the problem is due to using CALLERIDNUM rather than CALLERID(num). I don't think Asterisk 1.4 supports CALLERIDNUM.

K

Last edited by konu : February 26th, 2008 at 08:36 PM. Reason: Forgot to escape control characters.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old February 26th, 2008, 09:01 PM
kwiniarz kwiniarz is offline
Junior Member
 
Join Date: Feb 2008
Posts: 3
kwiniarz is on a distinguished road
Default Re: Caller ID

Thanks, the system is live so i'll try it tomorrow night and let you know
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old February 28th, 2008, 02:18 AM
kwiniarz kwiniarz is offline
Junior Member
 
Join Date: Feb 2008
Posts: 3
kwiniarz is on a distinguished road
Default Re: Caller ID

thanks, that did the trick

there were also some script issues that were giving me problems but it's all fixed.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes Rate This Thread
Rate This Thread:



Similar Threads for: Caller ID
Thread Thread Starter Forum Replies Last Post
Caller ID chicha IPKall Support Forum 2 September 19th, 2006 08:57 PM
Caller ID shows extension, not incominf caller ID rudy73 Asterisk Support Forum 0 May 3rd, 2005 09:12 AM
Caller ID without name? alwaysthisone BroadVoice Support Forum 12 April 22nd, 2005 07:51 AM
Caller-ID doogie VoicePulse Support Forum 3 March 25th, 2005 12:53 PM
Caller ID by name? eechan BroadVoice Support Forum 5 February 3rd, 2005 06:07 AM


Advertise Here

All times are GMT. The time now is 08:19 AM.


vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd. SEO by vBSEO 3.0.0 ©2007, Crawlability, Inc. Logos and trademarks are the property of Voxilla or their respective owner. All other content © 2003-2007 by Voxilla, Inc.