我已经在CentOS 6.4和MySQL数据库上实时安装了Asterisk 11。 I followed this manual。
我更改了所有sip.conf,extenstions.conf和extconfig.conf。我可以成功地将Asterisk实时连接到MySQL数据库。用户注册工作正常。但是,我听不到手机发出的任何声音,我无法拨打另一部电话。
这是从“用户1000”
调用“user 2000”时的日志[Apr 12 00:24:11] WARNING[19656][C-0000000c]: sip/config_parser.c:812 sip_parse_nat_option: nat=yes is deprecated, use nat=force_rport,comedia instead
[Apr 12 00:24:11] WARNING[19656][C-0000000c]: sip/config_parser.c:812 sip_parse_nat_option: nat=yes is deprecated, use nat=force_rport,comedia instead
[Apr 12 00:24:11] WARNING[19656][C-0000000c]: sip/config_parser.c:812 sip_parse_nat_option: nat=yes is deprecated, use nat=force_rport,comedia instead
== Using SIP RTP CoS mark 5
[Apr 12 00:24:11] WARNING[19656][C-0000000c]: sip/config_parser.c:812 sip_parse_nat_option: nat=yes is deprecated, use nat=force_rport,comedia instead
-- Executing [2000@from-sip:1] Dial("SIP/1000-0000000b", "SIP/2000|30")
[Apr 12 00:24:11] WARNING[22592][C-0000000c]: pbx.c:1618 pbx_exec: The application delimiter is now the comma, not the pipe. Did you forget to convert your dialplan? (Dial(SIP/2000|30))
== Using SIP RTP CoS mark 5
[Apr 12 00:24:11] ERROR[22592][C-0000000c]: netsock2.c:269 ast_sockaddr_resolve: getaddrinfo("2000|30", "(null)", ...): Name or service not known
[Apr 12 00:24:11] WARNING[22592][C-0000000c]: chan_sip.c:6204 create_addr: No such host: 2000|30
[Apr 12 00:24:11] WARNING[22592][C-0000000c]: app_dial.c:2437 dial_exec_full: Unable to create channel of type 'SIP' (cause 20 - Subscriber absent)
== Everyone is busy/congested at this time (1:0/0/1)
-- Executing [2000@from-sip:2] VoiceMail("SIP/1000-0000000b", "2000@from-sip")
-- <SIP/1000-0000000b> Playing 'vm-intro.gsm' (language 'en')
-- <SIP/1000-0000000b> Playing 'beep.gsm' (language 'en')
-- Recording the message
-- x=0, open writing: /var/spool/asterisk/voicemail/from-sip/2000/tmp/5lOmnn format: wav49, 0x7fa2b80013d8
-- x=1, open writing: /var/spool/asterisk/voicemail/from-sip/2000/tmp/5lOmnn format: gsm, 0x7fa2b80049b8
-- x=2, open writing: /var/spool/asterisk/voicemail/from-sip/2000/tmp/5lOmnn format: wav, 0x7fa2b80041b8
你看到了什么问题吗?
sip.conf
[general]
context=from-sip ; Default context for incoming calls
;
bindport=5060 ; bindport is the local UDP port that Asterisk will listen on
bindaddr=0.0.0.0 ; IP address to bind to (0.0.0.0 binds to all)
;
disallow=all ; First disallow all codecs
allow=gsm
allow=ulaw ; Allow codecs in order of preference
;
register => 12121111111:1234:11111111@sipauth.deltathree.com/1000
的extensions.conf
[general]
[globals]
;
[from-sip]
switch =>Realtime
res_config_mysql.conf
[general]
dbhost = 127.0.0.1
dbname = asteriskrealtime
dbuser = root
dbpass = password
dbport = 3306
答案 0 :(得分:1)
您已在db。
中的扩展表中编写了正确的拨号方案对于1.4以下的星号,您使用带管道(|)分隔符的appdata,对于较新版本,您使用逗号。