Steven P. Donegan
2004-Sep-12  07:28 UTC
[Asterisk-Users] Grandstream Budgetone 100 Caller ID shows extension, not incoming Caller ID
I've looked through the archives - and see questions similar to mine, but no answers. What, if anything, can be done to get the incoming Caller ID to be presented on the Budgetone's Caller ID display? In all other respects the phone+Asterisk seem to be extremely happy with each other.
Duane
2004-Sep-12  07:41 UTC
[Asterisk-Users] Grandstream Budgetone 100 Caller ID shows extension, not incoming Caller ID
Steven P. Donegan wrote:> I've looked through the archives - and see questions similar to mine, > but no answers. What, if anything, can be done to get the incoming > Caller ID to be presented on the Budgetone's Caller ID display? In all > other respects the phone+Asterisk seem to be extremely happy with each > other.What you need to do is strip the alpha caller name from the caller ID, the 101's can only handle numbers and it's trying to display a name... -- Best regards, Duane http://www.cacert.org - Free Security Certificates http://www.nodedb.com - Think globally, network locally http://www.sydneywireless.com - Telecommunications Freedom http://happysnapper.com.au - Sell your photos over the net! http://e164.org - Using Enum.164 to interconnect asterisk servers "I do not try to dance better than anyone else. I only try to dance better than myself."
Amit Sharma
2005-Apr-30  10:00 UTC
[Asterisk-Users] Grandstream Budgetone 100 Caller ID shows extension, not incoming Caller ID
Hi,
Is this a known problem with Grandstream Budgetone 100, I could see 
several people complaining about this but no answers.
Details
----------
1) I am simply trying to go from one SIP extension to another, so the 
zapata.conf and zaptel.conf entries are irrelavant.
2) I added a NoOp(CALLERID=${CALLERID}), to my dial plan cand could see 
the Caller ID on the console, so asterisk is aware of the caller ID.
3) All ID's are simply numbers no fancy alphanumeric strings.
I have been looking for a solution for a quite some time and seem to 
have hit a wall, any pointers would be greatly appreciated.
Thanks,
Amit
sip.conf
------------
[116]              ; Extension 1
type = friend                 context = sip-phone           username = 
116                 fromuser = 116                callerid = "116"
<116>
host = 10.0.1.116              nat = no                       
canreinvite=yes       dtmfmode = rfc-2833            
mailbox=116@sip-phone         disallow=all                   
allow=ulaw                     allow=alaw
[117]
type = friend          ; extension 2
context = sip-phone            username = 117                 fromuser = 
117                 callerid = "117" <117>
host = 10.0.1.117             nat = no                       
canreinvite=yes       dtmfmode = rfc-2833           
mailbox=117@sip-phone       disallow=all                 
allow=ulaw                    allow=alaw
                  extensions.conf
----------------------
[macro-exten]
exten => s,1,NoOp(CALLERID=${CALLERID})
exten => s,2,Dial(SIP/${ARG1},20)
exten => s,3,Voicemail(u${ARG1})
exten => s,4,Hangup
[default]
exten => 116,1,Macro(exten,116)
exten => 117,1,Macro(exten,117)