带星号和 chan_mobile 的来电拨号方案

Incoming calls dialplan with asterisk and chan_mobile

我设法(非常高兴 :D)将 chan_mobile 配置为星号 1.8,我的 iPhone 4 和去电工作正常。 我在自动接听来电时遇到问题。

这是我的 chan_mobile.conf 的样子:

[adapter]
address = 11:11:11:11:11:11
id = box-1

[iphone]
address = 22:22:22:22:22:22
port = 8
context = from-test-phone
adapter = box-1

并在 /etc/asterisk/extensions.conf 中添加了

[from-test-phone]
exten => s,1,Answer()
exten => s,n,Wait(1)
exten => s,n,Hangup()

但是当我拨打我的手机phone时没有人接听。

蓝牙设备已配对并激活

# rasterisk
> mobile show devices

ID              Address           Group Adapter         Connected State      SMS
iphone      22:22:22:22:22:22      0     box-1            Yes     Free       No 

我是不是漏掉了什么?

显然输入就足够了

rasterisk
> core set verbose 4
> core set debug 4

感谢用户1938742!