I updated my source and compiled * last night so I am running CVS-HEAD-08/24/04-23:51:01. This morning I have noticed that when anyone tries to retrieve their voicemail, the voicemail app is not recognizing any digits entered from the phones (cisco 7960's), so It just times-out waiting for digits. Has anyone else seen this problem or could it be something in our environment? TIA, Jamie Ferrara -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20040825/18814249/attachment.htm
Does your asterisk box have two interfaces or virtual interfaces? (eth0 and eth0:0 e.g.) I have noticed this as well, however it's not just a voicemail symptom, it's any passed SIP digits. An authenticate() won't work. I tracked it down mainly to asterisk giving my cisco 7960 the incorrect contact: sip:asterisk@216.190.35.60 header, instead of the internal interface. I have tried editing /etc/asterisk/sip.conf to use the externip= and localnet= however any variation of that keeps the contact: header using the public (eth0) address. By having sip listen only on the eth0:0 (172.16.10.1) address usind bindaddr= it resolves the problem. However, I am doing termination on the public interface as well. I have a feeling that having two network cards would resolve this problem... but * should easily be able to support this environment? Brian Ferrara, Jamie wrote:> I updated my source and compiled * last night so I am running > CVS-HEAD-08/24/04-23:51:01. This morning I have noticed that when > anyone tries to retrieve their voicemail, the voicemail app is not > recognizing any digits entered from the phones (cisco 7960?s), so It > just times-out waiting for digits. Has anyone else seen this problem > or could it be something in our environment? > > TIA, > > Jamie Ferrara > >------------------------------------------------------------------------ > >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >
Hmmm that is very interesting, I do happen to have 2 nic's in the machine and have not specified any binding for sip, however, I just reverted back to CVS-HEAD 08/17/04 and it is working fine ??? I noticed there is a closed bug on Mantis that describes this very issue #0002139 . Thank you, Jamie Ferrara -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Brian McManus Sent: Wednesday, August 25, 2004 11:34 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Something broken in voicemail app?? Does your asterisk box have two interfaces or virtual interfaces? (eth0 and eth0:0 e.g.) I have noticed this as well, however it's not just a voicemail symptom, it's any passed SIP digits. An authenticate() won't work. I tracked it down mainly to asterisk giving my cisco 7960 the incorrect contact: sip:asterisk@216.190.35.60 header, instead of the internal interface. I have tried editing /etc/asterisk/sip.conf to use the externip= and localnet= however any variation of that keeps the contact: header using the public (eth0) address. By having sip listen only on the eth0:0 (172.16.10.1) address usind bindaddr= it resolves the problem. However, I am doing termination on the public interface as well. I have a feeling that having two network cards would resolve this problem... but * should easily be able to support this environment? Brian Ferrara, Jamie wrote:> I updated my source and compiled * last night so I am running > CVS-HEAD-08/24/04-23:51:01. This morning I have noticed that when > anyone tries to retrieve their voicemail, the voicemail app is not > recognizing any digits entered from the phones (cisco 7960's), so It > just times-out waiting for digits. Has anyone else seen this problem > or could it be something in our environment? > > TIA, > > Jamie Ferrara > >------------------------------------------------------------------------> >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >_______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
Does your asterisk box have two interfaces or virtual interfaces? (eth0 and eth0:0 e.g.) I have noticed this as well, however it's not just a voicemail symptom, it's any passed SIP digits. An authenticate() won't work. I tracked it down mainly to asterisk giving my cisco 7960 the incorrect contact: sip:asterisk@216.190.35.60 header, instead of the internal interface. I have tried editing /etc/asterisk/sip.conf to use the externip= and localnet= however any variation of that keeps the contact: header using the public (eth0) address. By having sip listen only on the eth0:0 (172.16.10.1) address usind bindaddr= it resolves the problem. However, I am doing termination on the public interface as well. I have a feeling that having two network cards would resolve this problem... but * should easily be able to support this environment? Brian Ferrara, Jamie wrote:> I updated my source and compiled * last night so I am running > CVS-HEAD-08/24/04-23:51:01. This morning I have noticed that when > anyone tries to retrieve their voicemail, the voicemail app is not > recognizing any digits entered from the phones (cisco 7960?s), so It > just times-out waiting for digits. Has anyone else seen this problem > or could it be something in our environment? > > TIA, > > Jamie Ferrara > >------------------------------------------------------------------------ > >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >
I will try that, but I won't be able to until later this evening, people need access to their voicemail ;-) Thank you, Jamie Ferrara -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Brian McManus Sent: Wednesday, August 25, 2004 11:56 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Something broken in voicemail app?? Will you test something for me, make a special extension like 200 in your extensions.conf exten => 200,1,Authenticate(1337) exten => 200,2,Playback(tt-monkeys) exten => 200,3,Hangup Reload *, Then dial extension 200 --- it will ask for a password try and enter 1337... if it doesn't take your digits it's not specific to voicemail but all digits being passed. It looks like that closed bug was specific to voicemail. Brian Ferrara, Jamie wrote:>Hmmm that is very interesting, I do happen to have 2 nic's in the >machine and have not specified any binding for sip, however, I just >reverted back to CVS-HEAD 08/17/04 and it is working fine ??? I noticed >there is a closed bug on Mantis that describes this very issue #0002139 >. > > >Thank you, >Jamie Ferrara > >-----Original Message----- >From: asterisk-users-bounces@lists.digium.com >[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Brian >McManus >Sent: Wednesday, August 25, 2004 11:34 AM >To: Asterisk Users Mailing List - Non-Commercial Discussion >Subject: Re: [Asterisk-Users] Something broken in voicemail app?? > > >Does your asterisk box have two interfaces or virtual interfaces? (eth0>and eth0:0 e.g.) > >I have noticed this as well, however it's not just a voicemail symptom,>it's any passed SIP digits. > >An authenticate() won't work. I tracked it down mainly to asterisk >giving my cisco 7960 the incorrect contact: sip:asterisk@216.190.35.60 >header, instead of the internal interface. I have tried editing >/etc/asterisk/sip.conf to use the externip= and localnet= however any >variation of that keeps the contact: header using the public (eth0) >address. > >By having sip listen only on the eth0:0 (172.16.10.1) address usind >bindaddr= it resolves the problem. However, I am doing termination on >the public interface as well. > >I have a feeling that having two network cards would resolve this >problem... but * should easily be able to support this environment? > >Brian > >Ferrara, Jamie wrote: > > > >>I updated my source and compiled * last night so I am running >>CVS-HEAD-08/24/04-23:51:01. This morning I have noticed that when >>anyone tries to retrieve their voicemail, the voicemail app is not >>recognizing any digits entered from the phones (cisco 7960's), so It >>just times-out waiting for digits. Has anyone else seen this problem >>or could it be something in our environment? >> >>TIA, >> >>Jamie Ferrara >> >>----------------------------------------------------------------------->> >> >- > > >>_______________________________________________ >>Asterisk-Users mailing list >>Asterisk-Users@lists.digium.com >>http://lists.digium.com/mailman/listinfo/asterisk-users >>To UNSUBSCRIBE or update options visit: >> http://lists.digium.com/mailman/listinfo/asterisk-users >> >> >> > >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > > >_______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
Brian... I just built * again (make update) so I have CVS-HEAD-08/25/04-17:09:15. I added the internal IP to the bindaddr in sip.conf and that did not work for me, still does not recognize digits while trying enter voicemail. As for your test exten => 200,1,Authenticate(1337) exten => 200,2,Playback(tt-monkeys) exten => 200,3,Hangup here are the results -- Executing Authenticate("SIP/105-d7e", "1337") in new stack -- Playing 'agent-pass' (language 'en') -- Playing 'auth-incorrect' (language 'en') Timed out... I enabled sip debug for a bit and whenever the "from" came up from the phone I was testing with all the information looked correct, I.E. it was the right "@" IP address for *... Thank you, Jamie Ferrara -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Brian McManus Sent: Wednesday, August 25, 2004 1:58 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Something broken in voicemail app?? Jamie: Also I created a bug for this as I looked and looked and didn't find the same problem to be submitted. If you care to take a look or add notes, it's available here: http://bugs.digium.com/bug_view_page.php?bug_id=0002303 My solution thus far has been to checkout the latest CVS, and just copy chan_sip.c from your 8/17 source directory over to your new checked out copy, and compile. Brian Ferrara, Jamie wrote:>I will try that, but I won't be able to until later this evening,people>need access to their voicemail ;-) > > >Thank you, >Jamie Ferrara > >-----Original Message----- >From: asterisk-users-bounces@lists.digium.com >[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Brian >McManus >Sent: Wednesday, August 25, 2004 11:56 AM >To: Asterisk Users Mailing List - Non-Commercial Discussion >Subject: Re: [Asterisk-Users] Something broken in voicemail app?? > >Will you test something for me, make a special extension like 200 in >your extensions.conf > >exten => 200,1,Authenticate(1337) >exten => 200,2,Playback(tt-monkeys) >exten => 200,3,Hangup > > >Reload *, Then dial extension 200 --- it will ask for a password tryand> >enter 1337... if it doesn't take your digits it's not specific to >voicemail but all digits being passed. It looks like that closed bug >was specific to voicemail. > >Brian > > >Ferrara, Jamie wrote: > > > >>Hmmm that is very interesting, I do happen to have 2 nic's in the >>machine and have not specified any binding for sip, however, I just >>reverted back to CVS-HEAD 08/17/04 and it is working fine ??? Inoticed>>there is a closed bug on Mantis that describes this very issue#0002139>>. >> >> >>Thank you, >>Jamie Ferrara >> >>-----Original Message----- >>From: asterisk-users-bounces@lists.digium.com >>[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Brian >>McManus >>Sent: Wednesday, August 25, 2004 11:34 AM >>To: Asterisk Users Mailing List - Non-Commercial Discussion >>Subject: Re: [Asterisk-Users] Something broken in voicemail app?? >> >> >>Does your asterisk box have two interfaces or virtual interfaces?(eth0>> >> > > > >>and eth0:0 e.g.) >> >>I have noticed this as well, however it's not just a voicemailsymptom,>> >> > > > >>it's any passed SIP digits. >> >>An authenticate() won't work. I tracked it down mainly to asterisk >>giving my cisco 7960 the incorrect contact: sip:asterisk@216.190.35.60>>header, instead of the internal interface. I have tried editing >>/etc/asterisk/sip.conf to use the externip= and localnet= however any >>variation of that keeps the contact: header using the public (eth0) >>address. >> >>By having sip listen only on the eth0:0 (172.16.10.1) address usind >>bindaddr= it resolves the problem. However, I am doing termination on >>the public interface as well. >> >>I have a feeling that having two network cards would resolve this >>problem... but * should easily be able to support this environment? >> >>Brian >> >>Ferrara, Jamie wrote: >> >> >> >> >> >>>I updated my source and compiled * last night so I am running >>>CVS-HEAD-08/24/04-23:51:01. This morning I have noticed that when >>>anyone tries to retrieve their voicemail, the voicemail app is not >>>recognizing any digits entered from the phones (cisco 7960's), so It >>>just times-out waiting for digits. Has anyone else seen this problem >>>or could it be something in our environment? >>> >>>TIA, >>> >>>Jamie Ferrara >>> >>>---------------------------------------------------------------------->>> >>> >- > > >>> >>> >>> >>> >>- >> >> >> >> >>>_______________________________________________ >>>Asterisk-Users mailing list >>>Asterisk-Users@lists.digium.com >>>http://lists.digium.com/mailman/listinfo/asterisk-users >>>To UNSUBSCRIBE or update options visit: >>> http://lists.digium.com/mailman/listinfo/asterisk-users >>> >>> >>> >>> >>> >>_______________________________________________ >>Asterisk-Users mailing list >>Asterisk-Users@lists.digium.com >>http://lists.digium.com/mailman/listinfo/asterisk-users >>To UNSUBSCRIBE or update options visit: >> http://lists.digium.com/mailman/listinfo/asterisk-users >>_______________________________________________ >>Asterisk-Users mailing list >>Asterisk-Users@lists.digium.com >>http://lists.digium.com/mailman/listinfo/asterisk-users >>To UNSUBSCRIBE or update options visit: >> http://lists.digium.com/mailman/listinfo/asterisk-users >> >> >> >> >> > >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > > >_______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users