search for: sipdial

Displaying 2 results from an estimated 2 matches for "sipdial".

2020 Oct 25
2
chan_sip doesn't authenticate on INVITE from a Dial() command
...To: header. (Note: I don't think I have ever seen that optional "!dnid" argument documented anywhere...?) So, the version with the username and password looks to me like what I want... Dial(SIP/${SIPuser}:${SIPpass}@${SIPhost}) or else Dial(SIP/${SIPuser}:${SIPpass}@${SIPhost}!${SIPdial}) would seem to be what I need (I need to authenticate to SIPhost with the credentials SIPuser and SIPpass and I want to dial on to SIPdial). However, doing this results in the NOTICE message: chan_sip.c:23862 handle_response_invite: Failed to authenticate on INVITE to '"Antony Stone&...
2020 Oct 25
0
chan_sip doesn't authenticate on INVITE from a Dial() command
...hink I have ever seen that optional "!dnid" argument > documented anywhere...?) > > So, the version with the username and password looks to me like what I > want... > > Dial(SIP/${SIPuser}:${SIPpass}@${SIPhost}) or else > Dial(SIP/${SIPuser}:${SIPpass}@${SIPhost}!${SIPdial}) > > would seem to be what I need (I need to authenticate to SIPhost with the > credentials SIPuser and SIPpass and I want to dial on to SIPdial). It turns out that the username needs to be included twice (!?), as in: Dial(SIP/${SIPuser}:${SIPpass}::${SIPuser}@${SIPhost}/${SIPdial}) I...