Seek some help. Thanks a lot.
Below is the IVR-menu in extension.conf
- Code: Select all
exten => 500,1,Goto(ivr-menu,s,1)
[ivr-menu]
exten => s,1,Answer(500)
same => n(loop),Background(press-1&towards&press-3)
same => n,WaitExten()
exten => 1,1,Playback(you-entered)
same => n,SayNumber(1)
same => n,Playback(custom/quality_test_HarvardSentences)
same => n,Goto(s,loop)
exten => 2,1,Playback(you-entered)
same => n,SayNumber(2)
same => n,Playback(custom/quality_test_Noise)
same => n,Goto(s,loop)
exten => 3,1,Playback(you-entered)
same => n,SayNumber(3)
same => n,Playback(custom/quality_test_Echo)
same => n,Goto(s,loop)
But, when I press any number on the phone, it will play nothing.
From the CLI, I catch the asterisk CLI will disconnected.
- Code: Select all
Disconnected from Asterisk server
Asterisk cleanly ending (0).
Executing last minute cleanups
Is there anything wrong with this IVR dialplan? and I don't understand why the CLI will disconnected when number is pressed on the phone?