Hi, Asterisk gives me an WARNING if I try to register with my alcatel oxo pbx.>Sep 18 11:27:19 WARNING[11977]: chan_sip.c:5259 check_via: Don't know howto respond via 'SIP/2.0/udp' An INVITE to asterisk seems to go through (debug entries in *) but the the pbx seems to get no SIP responses. Thanks, Christian df9c@192.168.1.248 for seqno 1663486441 (Non-critical Response) Sep 18 11:27:19 WARNING[11977]: chan_sip.c:5259 check_via: Don't know how to respond via 'SIP/2.0/udp' Sep 18 11:27:20 WARNING[11977]: chan_sip.c:694 retrans_pkt: Maximum retries exceeded on call c442405144539d17679ad928b8ec df9c@192.168.1.248 for seqno 1663486441 (Non-critical Response) Sep 18 11:27:23 WARNING[11977]: chan_sip.c:5259 check_via: Don't know how to respond via 'SIP/2.0/udp' Sep 18 11:27:24 WARNING[11977]: chan_sip.c:694 retrans_pkt: Maximum retries exceeded on call c442405144539d17679ad928b8ec df9c@192.168.1.248 for seqno 1663486441 (Non-critical Response)
I think that (one of the) offending line(s) is in chan_sip.c:
if (strcasecmp(via, "SIP/2.0/UDP")) {
ast_log(LOG_WARNING, "Don't know how to respond
via '%s'\n", via);
return -1;
}
This is looking for an upper-case 'UDP' whereas your oxo pbx is using a
lower-case 'udp'.
> -----Original Message-----
> From: asterisk-users-bounces@lists.digium.com
> [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of
> Christian Gatti
> Sent: 19 September 2006 10:08
> To: asterisk-users@lists.digium.com
> Subject: [asterisk-users] Alcatel OXO Sip
>
> Hi,
>
> Asterisk gives me an WARNING if I try to register with my
> alcatel oxo pbx.
> >Sep 18 11:27:19 WARNING[11977]: chan_sip.c:5259 check_via:
> Don't know
> >how
> to respond via 'SIP/2.0/udp'
>
> An INVITE to asterisk seems to go through (debug entries in
> *) but the the pbx seems to get no SIP responses.
>
> Thanks,
> Christian
>
>
> df9c@192.168.1.248 for seqno 1663486441 (Non-critical
> Response) Sep 18 11:27:19 WARNING[11977]: chan_sip.c:5259
> check_via: Don't know how to respond via 'SIP/2.0/udp'
> Sep 18 11:27:20 WARNING[11977]: chan_sip.c:694 retrans_pkt:
> Maximum retries exceeded on call c442405144539d17679ad928b8ec
> df9c@192.168.1.248 for seqno 1663486441 (Non-critical
> Response) Sep 18 11:27:23 WARNING[11977]: chan_sip.c:5259
> check_via: Don't know how to respond via 'SIP/2.0/udp'
> Sep 18 11:27:24 WARNING[11977]: chan_sip.c:694 retrans_pkt:
> Maximum retries exceeded on call c442405144539d17679ad928b8ec
> df9c@192.168.1.248 for seqno 1663486441 (Non-critical Response)
>
>
>
>
>
>
>
>
> _______________________________________________
> --Bandwidth and Colocation provided by Easynews.com --
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
> http://lists.digium.com/mailman/listinfo/asterisk-users
>
Oh, when I said "offending line" I didn't mean to imply that Asterisk is wrong - I think that the OXO PBX should be using upper-case. Sorry.> -----Original Message----- > From: Steve Langstaff > Sent: 19 September 2006 10:18 > To: 'Asterisk Users Mailing List - Non-Commercial Discussion' > Subject: RE: [asterisk-users] Alcatel OXO Sip > > I think that (one of the) offending line(s) is in chan_sip.c: > > if (strcasecmp(via, "SIP/2.0/UDP")) { > ast_log(LOG_WARNING, "Don't know how to > respond via '%s'\n", via); > return -1; > } > > This is looking for an upper-case 'UDP' whereas your oxo pbx > is using a lower-case 'udp'. > > > > -----Original Message----- > > From: asterisk-users-bounces@lists.digium.com > > [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of > > Christian Gatti > > Sent: 19 September 2006 10:08 > > To: asterisk-users@lists.digium.com > > Subject: [asterisk-users] Alcatel OXO Sip > > > > Hi, > > > > Asterisk gives me an WARNING if I try to register with my > alcatel oxo > > pbx. > > >Sep 18 11:27:19 WARNING[11977]: chan_sip.c:5259 check_via: > > Don't know > > >how > > to respond via 'SIP/2.0/udp' > > > > An INVITE to asterisk seems to go through (debug entries in > > *) but the the pbx seems to get no SIP responses. > > > > Thanks, > > Christian > > > > > > df9c@192.168.1.248 for seqno 1663486441 (Non-critical > > Response) Sep 18 11:27:19 WARNING[11977]: chan_sip.c:5259 > > check_via: Don't know how to respond via 'SIP/2.0/udp' > > Sep 18 11:27:20 WARNING[11977]: chan_sip.c:694 retrans_pkt: > > Maximum retries exceeded on call c442405144539d17679ad928b8ec > > df9c@192.168.1.248 for seqno 1663486441 (Non-critical > > Response) Sep 18 11:27:23 WARNING[11977]: chan_sip.c:5259 > > check_via: Don't know how to respond via 'SIP/2.0/udp' > > Sep 18 11:27:24 WARNING[11977]: chan_sip.c:694 retrans_pkt: > > Maximum retries exceeded on call c442405144539d17679ad928b8ec > > df9c@192.168.1.248 for seqno 1663486441 (Non-critical Response) > > > > > > > > > > > > > > > > > > _______________________________________________ > > --Bandwidth and Colocation provided by Easynews.com -- > > > > asterisk-users mailing list > > To UNSUBSCRIBE or update options visit: > > http://lists.digium.com/mailman/listinfo/asterisk-users > >