Re: [asterisk-users] Not getting inbound CallerID name on Asterisk

2009-07-31 Thread D Tucny
Looking at the code, asterisk doesn't know how to handle RPID in an INFO
message, so it just responds with an OK and goes on with it's business...
The fact that the message has the name of the called party, rather than the
calling party probably wouldn't help even if Asterisk did understand it... I
would have expected you to at least get 'pending' through as the name
though...

d

2009/7/31 Chris Douglas chris.doug...@pioneerballoon.com

 The following pastebin shows the inbound call, inbound INFO containing the
 Remote-Party-ID string, and the SIP acknowledgement of the INFO.  Asterisk
 does not send the data from the Remote-Party-ID string on to the phone, nor
 does it set the CALLERID(name) variable after receiving the message.

 http://pastebin.com/m45e0adbd

 Thanks,
 Chris

 On Sun, Jul 26, 2009 at 1:19 PM, Chris
 Douglaschris.douglas at pioneerballoon.com wrote:
  We have an inbound PRI connected to our Cisco 3825 router which is then
  passing the calls to Asterisk as SIP calls.  We're getting the CallerID
  number but not the CallerID name.  We are seeing the name in the RPID
 field
  with a SIP trace on the Asterisk box but don't understand why it's not
  registering as the CallerID name.

 What do you get when you enable debugging on the asterisk cli?

 core set verbose 3

 make a call. Do you see caller ID going through? What does your
 dialplan look like? You can use NoOp() calls to pop out values
 including a caller ID if it exists.

 -Original Message-
 From: Chris Douglas [mailto:chris.doug...@pioneerballoon.com]
 Sent: Sunday, July 26, 2009 12:20 PM
 To: 'asterisk-users@lists.digium.com'
 Subject: Not getting inbound CallerID name on Asterisk

 We have an inbound PRI connected to our Cisco 3825 router which is then
 passing the calls to Asterisk as SIP calls.  We're getting the CallerID
 number but not the CallerID name.  We are seeing the name in the RPID field
 with a SIP trace on the Asterisk box but don't understand why it's not
 registering as the CallerID name.

 Here is a link to pastebin with the Sip trace.  In it you can see the RPID
 is seen from the Asterisk box but it is not used/sent to the phones.

 http://pastebin.com/m45e0adbd

 Here is the section from Sip.conf describing the Cisco 3825 connection.  We
 have tried type as both friend and peer as it is now with no change.

 [cisco_3825]
 context=default
 type=peer
 host=10.0.0.10
 disallow=all
 allow=g729
 allow=ulaw
 allow=alaw
 trustrpid=yes
 sendrpid=no

 All phones are not receiving the CallerID name, here is a sample from
 sip.conf of a phone config.

 [8670]
 secret=8670
 context=ict_sip
 type=friend
 host=dynamic
 call-limit=5
 agentlogin=yes
 mailbox=8...@ictvm
 progressinband=no
 sendrpid=yes


 Any help is greatly appreciated!


 Thanks,
 Chris Douglas
 Technical Services Manager
 Pioneer Balloon Company




 ___
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --

 AstriCon 2009 - October 13 - 15 Phoenix, Arizona
 Register Now: http://www.astricon.net

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Not getting inbound CallerID name on Asterisk

2009-07-30 Thread Chris Douglas
The following pastebin shows the inbound call, inbound INFO containing the
Remote-Party-ID string, and the SIP acknowledgement of the INFO.  Asterisk
does not send the data from the Remote-Party-ID string on to the phone, nor
does it set the CALLERID(name) variable after receiving the message.

http://pastebin.com/m45e0adbd

Thanks,
Chris

On Sun, Jul 26, 2009 at 1:19 PM, Chris
Douglaschris.douglas at pioneerballoon.com wrote:
 We have an inbound PRI connected to our Cisco 3825 router which is then
 passing the calls to Asterisk as SIP calls.  We're getting the CallerID
 number but not the CallerID name.  We are seeing the name in the RPID
field
 with a SIP trace on the Asterisk box but don't understand why it's not
 registering as the CallerID name.

What do you get when you enable debugging on the asterisk cli?

core set verbose 3

make a call. Do you see caller ID going through? What does your
dialplan look like? You can use NoOp() calls to pop out values
including a caller ID if it exists.

-Original Message-
From: Chris Douglas [mailto:chris.doug...@pioneerballoon.com] 
Sent: Sunday, July 26, 2009 12:20 PM
To: 'asterisk-users@lists.digium.com'
Subject: Not getting inbound CallerID name on Asterisk

We have an inbound PRI connected to our Cisco 3825 router which is then
passing the calls to Asterisk as SIP calls.  We're getting the CallerID
number but not the CallerID name.  We are seeing the name in the RPID field
with a SIP trace on the Asterisk box but don't understand why it's not
registering as the CallerID name.  

Here is a link to pastebin with the Sip trace.  In it you can see the RPID
is seen from the Asterisk box but it is not used/sent to the phones.

http://pastebin.com/m45e0adbd

Here is the section from Sip.conf describing the Cisco 3825 connection.  We
have tried type as both friend and peer as it is now with no change.

[cisco_3825]
context=default
type=peer
host=10.0.0.10
disallow=all
allow=g729
allow=ulaw
allow=alaw
trustrpid=yes
sendrpid=no

All phones are not receiving the CallerID name, here is a sample from
sip.conf of a phone config.

[8670]
secret=8670
context=ict_sip
type=friend
host=dynamic
call-limit=5
agentlogin=yes
mailbox=8...@ictvm
progressinband=no
sendrpid=yes


Any help is greatly appreciated!


Thanks,
Chris Douglas
Technical Services Manager
Pioneer Balloon Company




___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Not getting inbound CallerID name on Asterisk

2009-07-29 Thread David Backeberg
On Sun, Jul 26, 2009 at 1:19 PM, Chris
Douglaschris.doug...@pioneerballoon.com wrote:
 We have an inbound PRI connected to our Cisco 3825 router which is then
 passing the calls to Asterisk as SIP calls.  We're getting the CallerID
 number but not the CallerID name.  We are seeing the name in the RPID field
 with a SIP trace on the Asterisk box but don't understand why it's not
 registering as the CallerID name.

What do you get when you enable debugging on the asterisk cli?

core set verbose 3

make a call. Do you see caller ID going through? What does your
dialplan look like? You can use NoOp() calls to pop out values
including a caller ID if it exists.

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users