Asterisk 13.7.0 Paging Issue

Hello,

I am having issues with the Page() command. When I add the line for example exten => 450,1,Page(SIP/451) it does page the over head SIP speaker (Cyberdata), but it asks for the conference pin number. Asterisk version is 13.7.0 and DAHDI is installed for the meetme timing. Any ideas why the page will not automatically join the conference?

Thanks!

Can you share the dialplan and console output that occurs when you dial your paging extension?

The dial plan is very simple right now because I have just been trying to get it to work.

exten => 450,1,Page(SIP/451)

Below is the console output that occurs when I call 450 from my extension 802

– Called 451
– <SIP/802-000209c0> Playing ‘beep.gsm’ (language ‘en’)
> 0x7f67dd23e1e0 – Probation passed - setting RTP source address to 10.84.41.60:17394
– <SIP/802-000209c0> Playing ‘conf-getpin.gsm’ (language ‘en’)
– SIP/451-000209c1 is ringing
– SIP/451-000209c1 answered
– <SIP/451-000209c1> Playing ‘conf-getpin.gsm’ (language ‘en’)
> 0x7f67cc1e3a00 – Probation passed - setting RTP source address to 10.84.41.43:10500

Try this

exten => 450,1,Page(SIP/451,n)

Still the same result

Page(“SIP/802-00020ab1”, “SIP/451,n”) in new stack
== Using SIP RTP TOS bits 184
== Using SIP RTP CoS mark 5
– Called 451
– <SIP/802-00020ab1> Playing ‘beep.gsm’ (language ‘en’)
> 0x7f67dd279930 – Probation passed - setting RTP source address to 10.84.41.60:16864
– <SIP/802-00020ab1> Playing ‘conf-getpin.gsm’ (language ‘en’)
– SIP/451-00020ab2 is ringing
– SIP/451-00020ab2 answered
– <SIP/451-00020ab2> Playing ‘conf-getpin.gsm’ (language ‘en’)
> 0x7f67cc1f1140 – Probation passed - setting RTP source address to 10.84.41.43:10500

You should check what the confbridge.conf file has inside. Try to set an empty pin there. Page uses confbridge to setup a conference with all the phones, so I guess it reads what default values are inside this file and asks for a pin. Try to modify it.

Yes that was the issue. We were previously trying out conference bridge as the replacement for meetme and we did not comment out some of the settings.