Re: [asterisk-users] Failed to authenticate

2021-08-09 Thread Jerry Geis
On Sun, Aug 8, 2021 at 3:18 PM Jerry Geis wrote: > I am not using a SIP trunk as I normally do. > > I have an extensions 3382 setup that my server registers to the other SIP > system. > When the other system calls 3381 on my system I am getting this error: > > [Jul 27 10:08:50] WARNING[89791][C-0

Re: [asterisk-users] Failed to authenticate

2021-08-09 Thread Antony Stone
On Sunday 08 August 2021 at 21:18:26, Jerry Geis wrote: > I have an extensions 3382 setup that my server registers to the other SIP > system. > When the other system calls 3381 on my system I am getting this error: What's the association between 3381 and 3382? Antony. -- 90% of networking pro

Re: [asterisk-users] Failed to authenticate

2021-08-09 Thread Jerry Geis
On Mon, Aug 9, 2021 at 7:57 AM Jerry Geis wrote: > > > On Sun, Aug 8, 2021 at 3:18 PM Jerry Geis wrote: > >> I am not using a SIP trunk as I normally do. >> >> I have an extensions 3382 setup that my server registers to the other SIP >> system. >> When the other system calls 3381 on my system I

Re: [asterisk-users] Failed to authenticate

2021-08-09 Thread Antony Stone
On Monday 09 August 2021 at 14:11:18, Jerry Geis wrote: > > What's the association between 3381 and 3382? > > 3381 is the number they want to dial into my asterisk. 3382 is the > registered extension to their system. Sorry - I'm confused by that. You register as 3382. That means that if some

Re: [asterisk-users] Failed to authenticate

2021-08-09 Thread Jerry Geis
On Mon, Aug 9, 2021 at 8:11 AM Jerry Geis wrote: > > > On Mon, Aug 9, 2021 at 7:57 AM Jerry Geis wrote: > >> >> >> On Sun, Aug 8, 2021 at 3:18 PM Jerry Geis wrote: >> >>> I am not using a SIP trunk as I normally do. >>> >>> I have an extensions 3382 setup that my server registers to the other >

Re: [asterisk-users] Failed to authenticate

2021-08-09 Thread Jerry Geis
On Mon, Aug 9, 2021 at 8:32 AM Jerry Geis wrote: > > > On Mon, Aug 9, 2021 at 8:11 AM Jerry Geis wrote: > >> >> >> On Mon, Aug 9, 2021 at 7:57 AM Jerry Geis wrote: >> >>> >>> >>> On Sun, Aug 8, 2021 at 3:18 PM Jerry Geis wrote: >>> I am not using a SIP trunk as I normally do. I

Re: [asterisk-users] Failed to authenticate

2021-08-09 Thread Antony Stone
On Monday 09 August 2021 at 17:05:42, Jerry Geis wrote: > Well my issue has changed now. I have dropped the 3382. Changed back to > 3381. So I am registering 3381 to the other server. That makes more sense to me, at least. > The other server is 10.35.229.5. My IP is 10.35.229.11. > I have tw

Re: [asterisk-users] Failed to authenticate

2021-08-09 Thread Eric Wieling
You could switch to PJSIP and avoid most of this silliness. I love Asterisk, but the peer/user/friend model in chan_sip is simply terrible. PJSIP is different so there is a learning curve, of course. On 8/9/21 11:05 AM, Jerry Geis wrote: On Mon, Aug 9, 2021 at 8:32 AM Jerry Geis

Re: [asterisk-users] Failed to authenticate

2021-08-09 Thread Julian Beach
Hello Antony, Monday, August 9, 2021, 4:14:11 PM, you wrote: > You want to look for firewall rules which will allow UDP in both directions > on > ports 1 - 3 (typically, may vary a bit, but something like that), or > alternatively, look for any rules which would block this, and remove

[asterisk-users] macro for recording calls

2021-08-09 Thread Fourhundred Thecat
Hello, I have defined macro for recording: [macro-record] exten => s,1,Set(FILE=${CDR(src)}-${CDR(dst)}.wav) same => n,MixMonitor(/tmp/${FILE},b,) same => n,MacroExit and use it in my dialplan as such: exten => 1234,1,Macro(record) same => n,Han