C*******1 发帖数: 422 | 1 完美Asterisk+GV,折腾ipkall/sipgate的可以休矣
首先谢谢cubs的贴
http://www.mitbbs.com/clubarticle_t/voip/31214271.html
按照里面提到的link
http://forums.plugpbx.org/index.php/topic,247.msg1168.html.
折腾了一番,顺利地装上了asterisk 1.8 + google voice. 效果很好。
控诉一下以前用的asterisk + freepbx + ipkall/sipgate。拨号之后等待,听75+
music,再等待,才接通。我也用nonoh outbound trunk打中国,可要命的是每隔几个
星期,nonoh就出不去了,dockstar重启一下就又好了。最后不得不弄了个crontab每天
reboot一下. shame on dockstar.
还有,装freepbx纯粹是多此一举,freepbx和asterisk搞到一起,增加复杂性和不稳定
性不说,想upgrade任何东西简直是不可能的任务。
现在好了,打出美国和打进就是google voice,很自然。打出中国还是用nonoh。什么
caller id啊,ipkall/sipgate不稳定啊等等问题根本就不存在了。
感觉很好,所以另开新帖汇报一下。还要观察,看看能how long it can run without
rebooting. |
s*******d 发帖数: 4135 | 2 我决定也折腾一下。。。disable掉freeswitch |
s*******d 发帖数: 4135 | 3 折腾完了,很不错。但是好像很占内存啊,有哪些moudles是可以不加载的? |
C*******1 发帖数: 422 | 4 各位,请问你们有没有接电话的时候要按1的问题?怎样解决?谢谢。 |
f*u 发帖数: 5576 | 5 [modules]
autoload=no
load => format_pcm.so ; uLaw/ALaw
load => codec_ulaw.so ; mu-Law
load => format_g726.so ; Raw G.726
load => codec_g726.so ; g-726
load => format_gsm.so ; Raw gsm
load => codec_gsm.so ; gsm Coder/Decoder
load => app_dial.so ; Dialing
load => app_macro.so ; Extension Macros
load => app_playback.so ; Sound File Playback
load => app_mixmonitor.so ; Record calls
load => app_setcallerid.so ; Set CallerID
load => app_disa.so ; DISA
load => app_transfer.so ; Transfer calls
load => func_timeout.so ; Adjust timeout;
load => func_callerid.so ; Caller ID
load => func_logic.so ; GotoIf() and friends
load => func_strings.so ; String handling
load => pbx_config.so ; dialplan
load => pbx_spool.so ; call files work
load => chan_sip.so ; SIP
load => chan_gtalk.so ; Gtalk
load => res_jabber.so ; sign in Gtalk
load => res_musiconhold.so ; Music-on-Hold
load => func_shell.so ; Execute shell
load => func_channel.so ; channel information
load => cdr_csv.so ; call record
load => res_rtp_asterisk.so ; rtp, for 1.8
load => app_exec.so ; system command
load => app_system.so ; system command
load => func_global.so ; use global variables
load => func_math.so ; math func. for multi GV accounts
【在 s*******d 的大作中提到】 : 折腾完了,很不错。但是好像很占内存啊,有哪些moudles是可以不加载的?
|
f*u 发帖数: 5576 | 6 disable call screening in google voice setting
【在 C*******1 的大作中提到】 : 各位,请问你们有没有接电话的时候要按1的问题?怎样解决?谢谢。
|
s*******d 发帖数: 4135 | 7 用了这些module之后,发现有些问题:
No path to translate from Gtalk/1*******[email protected] to SIP/102-
00000007
应该是因为某些module没有加载。有啥idea么?
【在 f*u 的大作中提到】 : [modules] : autoload=no : load => format_pcm.so ; uLaw/ALaw : load => codec_ulaw.so ; mu-Law : load => format_g726.so ; Raw G.726 : load => codec_g726.so ; g-726 : load => format_gsm.so ; Raw gsm : load => codec_gsm.so ; gsm Coder/Decoder : load => app_dial.so ; Dialing : load => app_macro.so ; Extension Macros
|
s*******d 发帖数: 4135 | 8 加上这个codec_alaw.so就好了。
另外还需要加这个module: func_db.so |
f*u 发帖数: 5576 | 9 I don't need those two modules, Probably we have different setting in sip.
conf, I have attached all settings needed in this thread:
http://unknownspace.org/clubarticle_t/voip/31214573.html
【在 s*******d 的大作中提到】 : 加上这个codec_alaw.so就好了。 : 另外还需要加这个module: func_db.so
|
C*******1 发帖数: 422 | 10 谢谢两位回答press 1的问题。首先,(至少对于我)disalbe call screen/call
represenation是没用的。这篇文章
http://michigantelephone.wordpress.com/2010/12/14/asterisk-1-8-
认为这是gv的bug或feature. 读了读这篇文章,想加一个extra dtmf(1),不知道怎么
加。请指教。
press 1 的问题大概发生在一半的incoming call上。看来是我rpwt. |
|
|
f*u 发帖数: 5576 | 11 Try this
[google-in]
exten => Y*****[email protected], 1, GotoIf(${DB_EXISTS(gv_dialout/channel)}?
bridged)
exten => Y*****[email protected], n, NoOp(Callerid ${CALLERID(name)})
exten => Y*****[email protected], n, Set(CALLERID(num)=${SHIFT(CALLERID(name),@)})
exten => Y*****[email protected], n, Set(CALLERID(name)=${DB(cidname/${CALLERID(
num)})})
exten => Y*****[email protected], n, Dial(SIP/101, 180, D(:1))
exten => Y*****[email protected], n(bridged),Bridge(${DB_DELETE(gv_dialout/channel
)}, p) |
C*******1 发帖数: 422 | 12 Thanks. That is what I have. That is from
http://www.arctangent.net/~superm1/gv_configs/extensions.conf
I am not seeing any diference from this.
I understand
exten => s*****[email protected], n, Dial(SIP/101, 180, D(:1))
is giving DTMF(1).
I may need to try
answer, wait and sendDTMF. |
f*u 发帖数: 5576 | 13 debug asterisk: asterisk -rvvvv
make call to your gvoice to see DTMF(1) sent out or not
【在 C*******1 的大作中提到】 : Thanks. That is what I have. That is from : http://www.arctangent.net/~superm1/gv_configs/extensions.conf : I am not seeing any diference from this. : I understand : exten => s*****[email protected], n, Dial(SIP/101, 180, D(:1)) : is giving DTMF(1). : I may need to try : answer, wait and sendDTMF.
|
C*******1 发帖数: 422 | 14 In debug messages, I can see DTMF(1) got sent out. But I guess it is sent
out immediately after 101 was picked up - even before GV said "press 1
...".
The problem has been solved by replacing
exten => k*******[email protected], n, Dial(SIP/101,180,D(:1))
with
exten => m************[email protected], n, Answer
exten => m************[email protected], n, Wait(1)
exten => m************[email protected], n, SendDTMF(1)
exten => m************[email protected], n, Dial(SIP/101,180,) |
l*******e 发帖数: 3584 | 15 收了,请问这个要那个ATA吗?
还有就是这个一定要在DOCKSTAR上装DEBIAN, 我的不知道为什么DEBIAN就是装不上。 |
r****t 发帖数: 10904 | 16 这个 press 1 问题不 fix,上 1.8就是自己找 zt,我再等等。
【在 C*******1 的大作中提到】 : 谢谢两位回答press 1的问题。首先,(至少对于我)disalbe call screen/call : represenation是没用的。这篇文章 : http://michigantelephone.wordpress.com/2010/12/14/asterisk-1-8- : 认为这是gv的bug或feature. 读了读这篇文章,想加一个extra dtmf(1),不知道怎么 : 加。请指教。 : press 1 的问题大概发生在一半的incoming call上。看来是我rpwt.
|
s*******d 发帖数: 4135 | 17 上面不是给出解决方案了么?不过我没有改原来的配置文件,没有碰到过这个按1的问
题 |
r****t 发帖数: 10904 | 18 不知道 LZ 有没有搞定阿
【在 s*******d 的大作中提到】 : 上面不是给出解决方案了么?不过我没有改原来的配置文件,没有碰到过这个按1的问 : 题
|
s*******d 发帖数: 4135 | 19 他说搞定了:
The problem has been solved by replacing
exten => k*******[email protected], n, Dial(SIP/101,180,D(:1))
with
exten => m************[email protected], n, Answer
exten => m************[email protected], n, Wait(1)
exten => m************[email protected], n, SendDTMF(1)
exten => m************[email protected], n, Dial(SIP/101,180,) |
D*********Z 发帖数: 415 | 20 这个不是在官方document里就有的吗?
把里面的照抄就好了。
【在 s*******d 的大作中提到】 : 他说搞定了: : The problem has been solved by replacing : exten => k*******[email protected], n, Dial(SIP/101,180,D(:1)) : with : exten => m************[email protected], n, Answer : exten => m************[email protected], n, Wait(1) : exten => m************[email protected], n, SendDTMF(1) : exten => m************[email protected], n, Dial(SIP/101,180,)
|
|
|
r****t 发帖数: 10904 | 21 觉得这种 Wait(1) 的办法,我还是等等看,说不定哪天就需要 Wait(2) 才行了。
【在 s*******d 的大作中提到】 : 他说搞定了: : The problem has been solved by replacing : exten => k*******[email protected], n, Dial(SIP/101,180,D(:1)) : with : exten => m************[email protected], n, Answer : exten => m************[email protected], n, Wait(1) : exten => m************[email protected], n, SendDTMF(1) : exten => m************[email protected], n, Dial(SIP/101,180,)
|
C*******1 发帖数: 422 | 22
睡神 is right. I goolged asterisk site and got this:
https://wiki.asterisk.org/wiki/display/AST/Calling+using+Google
What they recommand is:
exten => s,1,Answer()
exten => s,n,Wait(2)
exten => s,n,SendDTMF(1)
exten => s,n,Dial(SIP/malcolm,20)
【在 D*********Z 的大作中提到】 : 这个不是在官方document里就有的吗? : 把里面的照抄就好了。
|
s*******d 发帖数: 4135 | 23 保险起见,我也换成这个。准备一段时间不折腾了。 |
l*******e 发帖数: 3584 | 24 I am a new in VOIP and this is the first time I installed something useful
in debian.
Installed successfully, but do not really know how to use it and set it up.
Now I feel I need use x-lite long into Asterisk |
C*******1 发帖数: 422 | 25 有需要的可以下载我的config文件:
http://db.tt/EgNS1BO
下载到pc后unzip后,用ultraedit编辑(要保持Unix Text格式), 把chihuono1换成你的
google voice account, 把mygooglevoicepassword换成你的password。如果需要nonoh打
中国(拨号方式是拨0即可,如北京010-
58488668), 替换yournonohaccountname和yournonohpassword。
我在pc上装了apache,在dockstar上可以wget这4个conf文件。
ATA上:username: 101, password: 8888888, proxy server: your dockstar IP
address。 没什么trick. |
l*******e 发帖数: 3584 | 26 i am reading their conf file now. Too big to be finish.
Thanks for your kindness offer and I am really interested how much time does
you guys put into it.
Since I do not have a ATA with me now, could I ask for the setup in soft
phone, do I just put the username 101 and password 8888888 too? |
i*****e 发帖数: 1359 | 27 多谢大牛,但是我用了以后gtalk还是离线……
nonoh
打
【在 C*******1 的大作中提到】 : 有需要的可以下载我的config文件: : http://db.tt/EgNS1BO : 下载到pc后unzip后,用ultraedit编辑(要保持Unix Text格式), 把chihuono1换成你的 : google voice account, 把mygooglevoicepassword换成你的password。如果需要nonoh打 : 中国(拨号方式是拨0即可,如北京010- : 58488668), 替换yournonohaccountname和yournonohpassword。 : 我在pc上装了apache,在dockstar上可以wget这4个conf文件。 : ATA上:username: 101, password: 8888888, proxy server: your dockstar IP : address。 没什么trick.
|
l*******e 发帖数: 3584 | 28 One more question. I do not have a nonoh account yet,
How much money I should put there?
Thanks a lot. |
s*******d 发帖数: 4135 | |
k****t 发帖数: 2288 | 30 是的。
其实ATA跟softphone没有很多的区别,只是ATA,你自己可以动的东西比较多,但是大部
分都是用默认的就行了。
另外ATA不需要电脑。
does
【在 l*******e 的大作中提到】 : i am reading their conf file now. Too big to be finish. : Thanks for your kindness offer and I am really interested how much time does : you guys put into it. : Since I do not have a ATA with me now, could I ask for the setup in soft : phone, do I just put the username 101 and password 8888888 too?
|
|
|
l*******e 发帖数: 3584 | 31 Another one week to go, finally know how to test drive by the softphone.
NOTICE[837]: chan_sip.c:21355 handle_request_invite: Call from '1011' to
extension 'XXXXXXXXXX' rejected because extension not found in context
'outbound'.
but I feel I setup the outbound there already. |
g******d 发帖数: 511 | 32 问个问题,这个Asterisk支持多个SIP/GV吗?一般ATA有两个口,可以设成两个不同的GV 号码吗? |
g******d 发帖数: 511 | 33 还有一个问题.在Google Voice帐户里面需要改什么设置,才能将google phone call
forward到我的dockstar上去. |
r****t 发帖数: 10904 | 34 asterisk 支持多个 sip, 可以支持多个 gv。要不怎么叫 pbx?
一般 ATA 和 gv 没啥关系(除非 gv ata),怎么搞都行。
GV 号码吗?
【在 g******d 的大作中提到】 : 问个问题,这个Asterisk支持多个SIP/GV吗?一般ATA有两个口,可以设成两个不同的GV 号码吗?
|
C*******1 发帖数: 422 | 35
请问gtalk离线是什么意思?在哪儿看的?
【在 i*****e 的大作中提到】 : 多谢大牛,但是我用了以后gtalk还是离线…… : : nonoh : 打
|
i*****e 发帖数: 1359 | 36 用电脑登录另一个gtalk帐号(这个帐号跟asterisk的帐号互相是联系人),但是电脑里
面的帐号显示asterisk的帐号离线
【在 C*******1 的大作中提到】 : : 请问gtalk离线是什么意思?在哪儿看的?
|
C*******1 发帖数: 422 | 37 我的显示timeout。
1)你的dockstar在run pogo linux还是debian?
2)你有没有设nonoh打出?能不能打?
3)有没有试过 asterisk -rvvvvv 看看log? |
i*****e 发帖数: 1359 | 38 今晚再试好像没问题了……
我用debian,没用nonoh,之前asterisk -rvvvv也没显示什么错误
【在 C*******1 的大作中提到】 : 我的显示timeout。 : 1)你的dockstar在run pogo linux还是debian? : 2)你有没有设nonoh打出?能不能打? : 3)有没有试过 asterisk -rvvvvv 看看log?
|
C*******1 发帖数: 422 | 39
Glad knowing that. 你打出的caller id正确吗?这两天好像有些问题。
【在 i*****e 的大作中提到】 : 今晚再试好像没问题了…… : 我用debian,没用nonoh,之前asterisk -rvvvv也没显示什么错误
|
i**w 发帖数: 883 | 40 是不是gtalk打出显示Unknown Number?我这儿也是这个问题。
【在 C*******1 的大作中提到】 : : Glad knowing that. 你打出的caller id正确吗?这两天好像有些问题。
|
|
|
k******t 发帖数: 163 | |
l*******e 发帖数: 3584 | 42 总算用了一次,觉得只是COPY不爽,进去改了一点儿东西,
结果只能打出不能打进了,提示不能建通道。 |
l*******e 发帖数: 3584 | 43 不明白为什么,没有做更改,再试的时候就一切正常了。
但是还有很我问题,最不明白的是,链接里有这么一段,
可我的是空的,为什么开机就直接启动ASERISK的服务呢?
If everything is all right, add a line
Code:
/etc/init.d/asterisk start
in /etc/rc.local, so that Asterisk will start when Dockstar turns on.
That's it!
_________________________________________
重启了一下ROCKSTAR,结果又无法打进了。
而且每一次提示的问题不一样。
[Feb 22 02:55:49] WARNING[883]: app_dial.c:2039 dial_exec_full: Unable to create channel of type 'SIP' (cause 20 - Unknown)
[Feb 22 02:55:49] WARNING[883]: features.c:5528 bridge_exec: Bridge failed because channel does not exists or we cannot get its lock
[Feb 22 02:56:11] WARNING[884]: app_dial.c:2039 dial_exec_full: Unable to create channel of type 'SIP' (cause 20 - Unknown)
[Feb 22 02:56:11] WARNING[884]: features.c:5528 bridge_exec: Bridge failed because channel does not exists or we cannot get its lock
[Feb 22 02:56:22] NOTICE[819]: chan_gtalk.c:804 gtalk_hangup_farend: Whoa, didn't find call during hangup!
___________________________
it works again after I restar X-Lite. So strange.
【在 l*******e 的大作中提到】 : 总算用了一次,觉得只是COPY不爽,进去改了一点儿东西, : 结果只能打出不能打进了,提示不能建通道。
|
z****n 发帖数: 26 | 44 谢谢分享.装了,很好用.但安装需要很长时间,所以想把U盘做个备份,不知用什么方法才
好,用过DD命令做备份,但做完后启动不了.只能放弃.只能用另一个4G U盘从头再做一次
安装.也成功了.不过发现一个很怪的现象:就是用不同牌子的U盘,用相同方法安装,分别
运行ASTERISK1.8.2.4 用TOP查 CPU USAGE 一个97% ,另一个才2%. 都能打GV. 为什么
会这样呢?用什么方法可查到为何CPU USAGE会这么高呢?
【在 C*******1 的大作中提到】 : 完美Asterisk+GV,折腾ipkall/sipgate的可以休矣 : 首先谢谢cubs的贴 : http://www.mitbbs.com/clubarticle_t/voip/31214271.html : 按照里面提到的link : http://forums.plugpbx.org/index.php/topic,247.msg1168.html. : 折腾了一番,顺利地装上了asterisk 1.8 + google voice. 效果很好。 : 控诉一下以前用的asterisk + freepbx + ipkall/sipgate。拨号之后等待,听75+ : music,再等待,才接通。我也用nonoh outbound trunk打中国,可要命的是每隔几个 : 星期,nonoh就出不去了,dockstar重启一下就又好了。最后不得不弄了个crontab每天 : reboot一下. shame on dockstar.
|
a*****s 发帖数: 8146 | |
C*******1 发帖数: 422 | 46
如果你用我的conf files的话,拨打中国的dial plan是这样的:不用拨0086或01186,
直接拨中
国国内区号即可。当然你可以自己改.
【在 a*****s 的大作中提到】 : 楼主这段我不是很明白.可以说详细点吗.谢谢
|
l******e 发帖数: 23 | 47 请问这个ATA上的user name和password
是哪里来得?谢谢!
ATA上:username: 101, password: 8888888, proxy server: your dockstar IP
address。 没什么trick.
Google Voice: forward的电话只选google chat, 其他不选。call screen要关掉。
【在 C*******1 的大作中提到】 : 完美Asterisk+GV,折腾ipkall/sipgate的可以休矣 : 首先谢谢cubs的贴 : http://www.mitbbs.com/clubarticle_t/voip/31214271.html : 按照里面提到的link : http://forums.plugpbx.org/index.php/topic,247.msg1168.html. : 折腾了一番,顺利地装上了asterisk 1.8 + google voice. 效果很好。 : 控诉一下以前用的asterisk + freepbx + ipkall/sipgate。拨号之后等待,听75+ : music,再等待,才接通。我也用nonoh outbound trunk打中国,可要命的是每隔几个 : 星期,nonoh就出不去了,dockstar重启一下就又好了。最后不得不弄了个crontab每天 : reboot一下. shame on dockstar.
|
C*******1 发帖数: 422 | |
C*******1 发帖数: 422 | 49 完美Asterisk+GV,折腾ipkall/sipgate的可以休矣
首先谢谢cubs的贴
http://www.mitbbs.com/clubarticle_t/voip/31214271.html
按照里面提到的link
http://forums.plugpbx.org/index.php/topic,247.msg1168.html.
折腾了一番,顺利地装上了asterisk 1.8 + google voice. 效果很好。
控诉一下以前用的asterisk + freepbx + ipkall/sipgate。拨号之后等待,听75+
music,再等待,才接通。我也用nonoh outbound trunk打中国,可要命的是每隔几个
星期,nonoh就出不去了,dockstar重启一下就又好了。最后不得不弄了个crontab每天
reboot一下. shame.
还有,装freepbx纯粹是多此一举,freepbx和asterisk搞到一起,增加复杂性和不稳定
性不说,想upgrade任何东西简直是不可能的任务。
现在好了,打出美国和打进就是google voice,很自然。打出中国还是用nonoh。什么
caller id啊,ipkall/sipgate不稳定啊等等问题根本就不存在了。
感觉很好,所以另开新帖汇报一下。还要观察,看看能how long it can run without
rebooting.
==========================================
有需要的可以下载我的config文件:
http://db.tt/EgNS1BO
下载到pc后unzip后,用ultraedit或notepad++编辑(要保持Unix Text格式), 把chihuono1换
成你的
google voice account, 把mygooglevoicepassword换成你的password。如果需要nonoh打
中国(拨号方式是拨0即可,如北京010-
58488668), 替换yournonohaccountname和yournonohpassword。
我在pc上装了apache,在dockstar上可以wget这4个conf文件。
改了conf文件以后,reboot命令重启一下。注意不要用拔电再插电的方法重启,那样很容易就进了
pogo linux了。
ATA上:username: 101, password: 8888888, proxy server: your dockstar IP
address。 没什么trick.
Google Voice: forward的电话只选google chat, 其他不选。call screen要关掉。 |
s*******d 发帖数: 4135 | 50 我决定也折腾一下。。。disable掉freeswitch |
|
|
s*******d 发帖数: 4135 | 51 折腾完了,很不错。但是好像很占内存啊,有哪些moudles是可以不加载的? |
C*******1 发帖数: 422 | 52 各位,请问你们有没有接电话的时候要按1的问题?怎样解决?谢谢。 |
f*u 发帖数: 5576 | 53 [modules]
autoload=no
load => format_pcm.so ; uLaw/ALaw
load => codec_ulaw.so ; mu-Law
load => format_g726.so ; Raw G.726
load => codec_g726.so ; g-726
load => format_gsm.so ; Raw gsm
load => codec_gsm.so ; gsm Coder/Decoder
load => app_dial.so ; Dialing
load => app_macro.so ; Extension Macros
load => app_playback.so ; Sound File Playback
load => app_mixmonitor.so ; Record calls
load => app_setcallerid.so ; Set CallerID
load => app_disa.so ; DISA
load => app_transfer.so ; Transfer calls
load => func_timeout.so ; Adjust timeout;
load => func_callerid.so ; Caller ID
load => func_logic.so ; GotoIf() and friends
load => func_strings.so ; String handling
load => pbx_config.so ; dialplan
load => pbx_spool.so ; call files work
load => chan_sip.so ; SIP
load => chan_gtalk.so ; Gtalk
load => res_jabber.so ; sign in Gtalk
load => res_musiconhold.so ; Music-on-Hold
load => func_shell.so ; Execute shell
load => func_channel.so ; channel information
load => cdr_csv.so ; call record
load => res_rtp_asterisk.so ; rtp, for 1.8
load => app_exec.so ; system command
load => app_system.so ; system command
load => func_global.so ; use global variables
load => func_math.so ; math func. for multi GV accounts
【在 s*******d 的大作中提到】 : 折腾完了,很不错。但是好像很占内存啊,有哪些moudles是可以不加载的?
|
f*u 发帖数: 5576 | 54 disable call screening in google voice setting
【在 C*******1 的大作中提到】 : 各位,请问你们有没有接电话的时候要按1的问题?怎样解决?谢谢。
|
s*******d 发帖数: 4135 | 55 用了这些module之后,发现有些问题:
No path to translate from Gtalk/1*******[email protected] to SIP/102-
00000007
应该是因为某些module没有加载。有啥idea么?
【在 f*u 的大作中提到】 : [modules] : autoload=no : load => format_pcm.so ; uLaw/ALaw : load => codec_ulaw.so ; mu-Law : load => format_g726.so ; Raw G.726 : load => codec_g726.so ; g-726 : load => format_gsm.so ; Raw gsm : load => codec_gsm.so ; gsm Coder/Decoder : load => app_dial.so ; Dialing : load => app_macro.so ; Extension Macros
|
s*******d 发帖数: 4135 | 56 加上这个codec_alaw.so就好了。
另外还需要加这个module: func_db.so |
f*u 发帖数: 5576 | 57 I don't need those two modules, Probably we have different setting in sip.
conf, I have attached all settings needed in this thread:
http://unknownspace.org/clubarticle_t/voip/31214573.html
【在 s*******d 的大作中提到】 : 加上这个codec_alaw.so就好了。 : 另外还需要加这个module: func_db.so
|
C*******1 发帖数: 422 | 58 谢谢两位回答press 1的问题。首先,(至少对于我)disalbe call screen/call
represenation是没用的。这篇文章
http://michigantelephone.wordpress.com/2010/12/14/asterisk-1-8-
认为这是gv的bug或feature. 读了读这篇文章,想加一个extra dtmf(1),不知道怎么
加。请指教。
press 1 的问题大概发生在一半的incoming call上。看来是我rpwt. |
f*u 发帖数: 5576 | 59 Try this
[google-in]
exten => Y*****[email protected], 1, GotoIf(${DB_EXISTS(gv_dialout/channel)}?
bridged)
exten => Y*****[email protected], n, NoOp(Callerid ${CALLERID(name)})
exten => Y*****[email protected], n, Set(CALLERID(num)=${SHIFT(CALLERID(name),@)})
exten => Y*****[email protected], n, Set(CALLERID(name)=${DB(cidname/${CALLERID(
num)})})
exten => Y*****[email protected], n, Dial(SIP/101, 180, D(:1))
exten => Y*****[email protected], n(bridged),Bridge(${DB_DELETE(gv_dialout/channel
)}, p) |
C*******1 发帖数: 422 | 60 Thanks. That is what I have. That is from
http://www.arctangent.net/~superm1/gv_configs/extensions.conf
I am not seeing any diference from this.
I understand
exten => s*****[email protected], n, Dial(SIP/101, 180, D(:1))
is giving DTMF(1).
I may need to try
answer, wait and sendDTMF. |
|
|
f*u 发帖数: 5576 | 61 debug asterisk: asterisk -rvvvv
make call to your gvoice to see DTMF(1) sent out or not
【在 C*******1 的大作中提到】 : Thanks. That is what I have. That is from : http://www.arctangent.net/~superm1/gv_configs/extensions.conf : I am not seeing any diference from this. : I understand : exten => s*****[email protected], n, Dial(SIP/101, 180, D(:1)) : is giving DTMF(1). : I may need to try : answer, wait and sendDTMF.
|
C*******1 发帖数: 422 | 62 In debug messages, I can see DTMF(1) got sent out. But I guess it is sent
out immediately after 101 was picked up - even before GV said "press 1
...".
The problem has been solved by replacing
exten => k*******[email protected], n, Dial(SIP/101,180,D(:1))
with
exten => m************[email protected], n, Answer
exten => m************[email protected], n, Wait(1)
exten => m************[email protected], n, SendDTMF(1)
exten => m************[email protected], n, Dial(SIP/101,180,) |
l*******e 发帖数: 3584 | 63 收了,请问这个要那个ATA吗?
还有就是这个一定要在DOCKSTAR上装DEBIAN, 我的不知道为什么DEBIAN就是装不上。 |
r****t 发帖数: 10904 | 64 这个 press 1 问题不 fix,上 1.8就是自己找 zt,我再等等。
【在 C*******1 的大作中提到】 : 谢谢两位回答press 1的问题。首先,(至少对于我)disalbe call screen/call : represenation是没用的。这篇文章 : http://michigantelephone.wordpress.com/2010/12/14/asterisk-1-8- : 认为这是gv的bug或feature. 读了读这篇文章,想加一个extra dtmf(1),不知道怎么 : 加。请指教。 : press 1 的问题大概发生在一半的incoming call上。看来是我rpwt.
|
s*******d 发帖数: 4135 | 65 上面不是给出解决方案了么?不过我没有改原来的配置文件,没有碰到过这个按1的问
题 |
r****t 发帖数: 10904 | 66 不知道 LZ 有没有搞定阿
【在 s*******d 的大作中提到】 : 上面不是给出解决方案了么?不过我没有改原来的配置文件,没有碰到过这个按1的问 : 题
|
s*******d 发帖数: 4135 | 67 他说搞定了:
The problem has been solved by replacing
exten => k*******[email protected], n, Dial(SIP/101,180,D(:1))
with
exten => m************[email protected], n, Answer
exten => m************[email protected], n, Wait(1)
exten => m************[email protected], n, SendDTMF(1)
exten => m************[email protected], n, Dial(SIP/101,180,) |
D*********Z 发帖数: 415 | 68 这个不是在官方document里就有的吗?
把里面的照抄就好了。
【在 s*******d 的大作中提到】 : 他说搞定了: : The problem has been solved by replacing : exten => k*******[email protected], n, Dial(SIP/101,180,D(:1)) : with : exten => m************[email protected], n, Answer : exten => m************[email protected], n, Wait(1) : exten => m************[email protected], n, SendDTMF(1) : exten => m************[email protected], n, Dial(SIP/101,180,)
|
r****t 发帖数: 10904 | 69 觉得这种 Wait(1) 的办法,我还是等等看,说不定哪天就需要 Wait(2) 才行了。
【在 s*******d 的大作中提到】 : 他说搞定了: : The problem has been solved by replacing : exten => k*******[email protected], n, Dial(SIP/101,180,D(:1)) : with : exten => m************[email protected], n, Answer : exten => m************[email protected], n, Wait(1) : exten => m************[email protected], n, SendDTMF(1) : exten => m************[email protected], n, Dial(SIP/101,180,)
|
C*******1 发帖数: 422 | 70
睡神 is right. I goolged asterisk site and got this:
https://wiki.asterisk.org/wiki/display/AST/Calling+using+Google
What they recommand is:
exten => s,1,Answer()
exten => s,n,Wait(2)
exten => s,n,SendDTMF(1)
exten => s,n,Dial(SIP/malcolm,20)
【在 D*********Z 的大作中提到】 : 这个不是在官方document里就有的吗? : 把里面的照抄就好了。
|
|
|
s*******d 发帖数: 4135 | 71 保险起见,我也换成这个。准备一段时间不折腾了。 |
l*******e 发帖数: 3584 | 72 I am a new in VOIP and this is the first time I installed something
useful
in debian.
Installed successfully, but do not really know how to use it and set it
up.
Now I feel I need use x-lite long into Asterisk
谁能给个有用一点儿的链接呀,
我实在不知道HOW-TO: Setup Asterisk 1.8/gtalk on Dockstar/Debian
里面,第十步开始应该如何设了。
You also need to edit these files to include the necessary information
of your own, in particular, the Google Voice credentials. Put these 4
files into the /etc/asterisk directory. You can either use WinSCP or
simply use a text editor to edit the 4 files in /etc/asterisk/ and paste
the edited contents from the downloaded files into them.
这里是说用VI编辑这几文件吗?
第十一步 # asterisk -cvvv
Log into Asterisk 1.8 with a sip phone, such as an X-Lite softphone, and
make calls
在X-Lite里设些什么?
先谢谢了。 |
C*******1 发帖数: 422 | 73 有需要的可以下载我的config文件:
http://db.tt/EgNS1BO
下载到pc后unzip后,用ultraedit或notepad++编辑(要保持Unix Text格式), 把chihuono1换
成你的
google voice account, 把mygooglevoicepassword换成你的password。如果需要nonoh打
中国(拨号方式是拨0即可,如北京010-
58488668), 替换yournonohaccountname和yournonohpassword。
我在pc上装了apache,在dockstar上可以wget这4个conf文件。
改了conf文件以后,reboot命令重启一下。注意不要用拔电再插电的方法重启,那样很容易就进了
pogo linux了。
ATA上:username: 101, password: 8888888, proxy server: your dockstar IP
address。 没什么trick.
Google Voice: forward的电话只选google chat, 其他不选。call screen要关掉。 |
l*******e 发帖数: 3584 | 74 i am reading their conf file now. Too big to be finish.
Thanks for your kindness offer and I am really interested how much time does
you guys put into it.
Since I do not have a ATA with me now, could I ask for the setup in soft
phone, do I just put the username 101 and password 8888888 too? |
i*****e 发帖数: 1359 | 75 多谢大牛,但是我用了以后gtalk还是离线……
nonoh
打
【在 C*******1 的大作中提到】 : 有需要的可以下载我的config文件: : http://db.tt/EgNS1BO : 下载到pc后unzip后,用ultraedit或notepad++编辑(要保持Unix Text格式), 把chihuono1换 : 成你的 : google voice account, 把mygooglevoicepassword换成你的password。如果需要nonoh打 : 中国(拨号方式是拨0即可,如北京010- : 58488668), 替换yournonohaccountname和yournonohpassword。 : 我在pc上装了apache,在dockstar上可以wget这4个conf文件。 : 改了conf文件以后,reboot命令重启一下。注意不要用拔电再插电的方法重启,那样很容易就进了 : pogo linux了。
|
l*******e 发帖数: 3584 | 76 One more question. I do not have a nonoh account yet,
How much money I should put there?
Thanks a lot. |
s*******d 发帖数: 4135 | |
k****t 发帖数: 2288 | 78 是的。
其实ATA跟softphone没有很多的区别,只是ATA,你自己可以动的东西比较多,但是大部
分都是用默认的就行了。
另外ATA不需要电脑。
does
【在 l*******e 的大作中提到】 : i am reading their conf file now. Too big to be finish. : Thanks for your kindness offer and I am really interested how much time does : you guys put into it. : Since I do not have a ATA with me now, could I ask for the setup in soft : phone, do I just put the username 101 and password 8888888 too?
|
l*******e 发帖数: 3584 | 79 Another one week to go, finally know how to test drive by the softphone.
NOTICE[837]: chan_sip.c:21355 handle_request_invite: Call from '1011' to
extension 'XXXXXXXXXX' rejected because extension not found in context
'outbound'.
but I feel I setup the outbound there already. |
g******d 发帖数: 511 | 80 问个问题,这个Asterisk支持多个SIP/GV吗?一般ATA有两个口,可以设成两个不同的GV 号码吗? |
|
|
g******d 发帖数: 511 | 81 还有一个问题.在Google Voice帐户里面需要改什么设置,才能将google phone call
forward到我的dockstar上去. |
r****t 发帖数: 10904 | 82 asterisk 支持多个 sip, 可以支持多个 gv。要不怎么叫 pbx?
一般 ATA 和 gv 没啥关系(除非 gv ata),怎么搞都行。
GV 号码吗?
【在 g******d 的大作中提到】 : 问个问题,这个Asterisk支持多个SIP/GV吗?一般ATA有两个口,可以设成两个不同的GV 号码吗?
|
C*******1 发帖数: 422 | 83
请问gtalk离线是什么意思?在哪儿看的?
【在 i*****e 的大作中提到】 : 多谢大牛,但是我用了以后gtalk还是离线…… : : nonoh : 打
|
i*****e 发帖数: 1359 | 84 用电脑登录另一个gtalk帐号(这个帐号跟asterisk的帐号互相是联系人),但是电脑里
面的帐号显示asterisk的帐号离线
【在 C*******1 的大作中提到】 : : 请问gtalk离线是什么意思?在哪儿看的?
|
C*******1 发帖数: 422 | 85 我的显示timeout。
1)你的dockstar在run pogo linux还是debian?
2)你有没有设nonoh打出?能不能打?
3)有没有试过 asterisk -rvvvvv 看看log? |
i*****e 发帖数: 1359 | 86 今晚再试好像没问题了……
我用debian,没用nonoh,之前asterisk -rvvvv也没显示什么错误
【在 C*******1 的大作中提到】 : 我的显示timeout。 : 1)你的dockstar在run pogo linux还是debian? : 2)你有没有设nonoh打出?能不能打? : 3)有没有试过 asterisk -rvvvvv 看看log?
|
C*******1 发帖数: 422 | 87
Glad knowing that. 你打出的caller id正确吗?这两天好像有些问题。
【在 i*****e 的大作中提到】 : 今晚再试好像没问题了…… : 我用debian,没用nonoh,之前asterisk -rvvvv也没显示什么错误
|
i**w 发帖数: 883 | 88 是不是gtalk打出显示Unknown Number?我这儿也是这个问题。
【在 C*******1 的大作中提到】 : : Glad knowing that. 你打出的caller id正确吗?这两天好像有些问题。
|
k******t 发帖数: 163 | |
l*******e 发帖数: 3584 | 90 总算用了一次,觉得只是COPY不爽,进去改了一点儿东西,
结果只能打出不能打进了,提示不能建通道。 |
|
|
l*******e 发帖数: 3584 | 91 不明白为什么,没有做更改,再试的时候就一切正常了。
但是还有很我问题,最不明白的是,链接里有这么一段,
可我的是空的,为什么开机就直接启动ASERISK的服务呢?
If everything is all right, add a line
Code:
/etc/init.d/asterisk start
in /etc/rc.local, so that Asterisk will start when Dockstar turns on.
That's it!
_________________________________________
重启了一下ROCKSTAR,结果又无法打进了。
而且每一次提示的问题不一样。
[Feb 22 02:55:49] WARNING[883]: app_dial.c:2039 dial_exec_full: Unable to create channel of type 'SIP' (cause 20 - Unknown)
[Feb 22 02:55:49] WARNING[883]: features.c:5528 bridge_exec: Bridge failed because channel does not exists or we cannot get its lock
[Feb 22 02:56:11] WARNING[884]: app_dial.c:2039 dial_exec_full: Unable to create channel of type 'SIP' (cause 20 - Unknown)
[Feb 22 02:56:11] WARNING[884]: features.c:5528 bridge_exec: Bridge failed because channel does not exists or we cannot get its lock
[Feb 22 02:56:22] NOTICE[819]: chan_gtalk.c:804 gtalk_hangup_farend: Whoa, didn't find call during hangup!
___________________________
it works again after I restar X-Lite. So strange.
【在 l*******e 的大作中提到】 : 总算用了一次,觉得只是COPY不爽,进去改了一点儿东西, : 结果只能打出不能打进了,提示不能建通道。
|
s*****e 发帖数: 404 | 92 谢谢分享这个,我follow it,用了LZ的conf文件。现在有一个问题,
打出都没问题,但是有时打入没有声音,可以听到ring,但没有对方的声音。什么地方
设错了吗。 |
c*******o 发帖数: 1722 | 93 这个是说可以不用sipgate了?
另外,用GV打国际要钱么?
【在 C*******1 的大作中提到】 : 完美Asterisk+GV,折腾ipkall/sipgate的可以休矣 : 首先谢谢cubs的贴 : http://www.mitbbs.com/clubarticle_t/voip/31214271.html : 按照里面提到的link : http://forums.plugpbx.org/index.php/topic,247.msg1168.html. : 折腾了一番,顺利地装上了asterisk 1.8 + google voice. 效果很好。 : 控诉一下以前用的asterisk + freepbx + ipkall/sipgate。拨号之后等待,听75+ : music,再等待,才接通。我也用nonoh outbound trunk打中国,可要命的是每隔几个 : 星期,nonoh就出不去了,dockstar重启一下就又好了。最后不得不弄了个crontab每天 : reboot一下. shame.
|
k***e 发帖数: 7933 | 94 不用
要
【在 c*******o 的大作中提到】 : 这个是说可以不用sipgate了? : 另外,用GV打国际要钱么?
|
c*******o 发帖数: 1722 | 95 thx
【在 k***e 的大作中提到】 : 不用 : 要
|
c*******o 发帖数: 1722 | 96 还有个问题,原来用asterisk + freebpx + sipgate
怎么用这个? 要重新装所有的东西么?还是就把那
四个set up/configue 文件upload以西就好了?
另外,怎么set up打国际长途。能不能给个link,
我自己再学习学习。
人老了,实在是不想折腾了。
【在 k***e 的大作中提到】 : 不用 : 要
|
r****t 发帖数: 10904 | 97 uninstall freepbx, 保留 asterisk 就行了。nonoh 设置应该很多,往前面找找。
【在 c*******o 的大作中提到】 : 还有个问题,原来用asterisk + freebpx + sipgate : 怎么用这个? 要重新装所有的东西么?还是就把那 : 四个set up/configue 文件upload以西就好了? : 另外,怎么set up打国际长途。能不能给个link, : 我自己再学习学习。 : 人老了,实在是不想折腾了。
|
s*******a 发帖数: 8827 | |
a*****s 发帖数: 8146 | 99 楼主这段我不是很明白.可以说详细点吗.谢谢
---------
如果需要nonoh打
中国(拨号方式是拨0即可,如北京010-
58488668) |
C*******1 发帖数: 422 | 100
如果你用我的conf files的话,拨打中国的dial plan是这样的:不用拨0086或01186,
直接拨中
国国内区号即可。当然你可以自己改.
【在 a*****s 的大作中提到】 : 楼主这段我不是很明白.可以说详细点吗.谢谢 : --------- : 如果需要nonoh打 : 中国(拨号方式是拨0即可,如北京010- : 58488668)
|
|
|
l******e 发帖数: 23 | 101 请问这个ATA上的user name和password
是哪里来得?谢谢!
ATA上:username: 101, password: 8888888, proxy server: your dockstar IP
address。 没什么trick.
Google Voice: forward的电话只选google chat, 其他不选。call screen要关掉。
【在 C*******1 的大作中提到】 : 完美Asterisk+GV,折腾ipkall/sipgate的可以休矣 : 首先谢谢cubs的贴 : http://www.mitbbs.com/clubarticle_t/voip/31214271.html : 按照里面提到的link : http://forums.plugpbx.org/index.php/topic,247.msg1168.html. : 折腾了一番,顺利地装上了asterisk 1.8 + google voice. 效果很好。 : 控诉一下以前用的asterisk + freepbx + ipkall/sipgate。拨号之后等待,听75+ : music,再等待,才接通。我也用nonoh outbound trunk打中国,可要命的是每隔几个 : 星期,nonoh就出不去了,dockstar重启一下就又好了。最后不得不弄了个crontab每天 : reboot一下. shame.
|
C*******1 发帖数: 422 | |
s*****e 发帖数: 404 | 103 谢谢分享这个,我follow it,用了LZ的conf文件。现在有一个问题,
打出都没问题,但是有时打入没有声音,可以听到ring,但没有对方的声音。什么地方
设错了吗。 |
c*******o 发帖数: 1722 | 104 这个是说可以不用sipgate了?
另外,用GV打国际要钱么?
【在 C*******1 的大作中提到】 : 完美Asterisk+GV,折腾ipkall/sipgate的可以休矣 : 首先谢谢cubs的贴 : http://www.mitbbs.com/clubarticle_t/voip/31214271.html : 按照里面提到的link : http://forums.plugpbx.org/index.php/topic,247.msg1168.html. : 折腾了一番,顺利地装上了asterisk 1.8 + google voice. 效果很好。 : 控诉一下以前用的asterisk + freepbx + ipkall/sipgate。拨号之后等待,听75+ : music,再等待,才接通。我也用nonoh outbound trunk打中国,可要命的是每隔几个 : 星期,nonoh就出不去了,dockstar重启一下就又好了。最后不得不弄了个crontab每天 : reboot一下. shame.
|
k***e 发帖数: 7933 | 105 不用
要
【在 c*******o 的大作中提到】 : 这个是说可以不用sipgate了? : 另外,用GV打国际要钱么?
|
c*******o 发帖数: 1722 | 106 thx
【在 k***e 的大作中提到】 : 不用 : 要
|
c*******o 发帖数: 1722 | 107 还有个问题,原来用asterisk + freebpx + sipgate
怎么用这个? 要重新装所有的东西么?还是就把那
四个set up/configue 文件upload以西就好了?
另外,怎么set up打国际长途。能不能给个link,
我自己再学习学习。
人老了,实在是不想折腾了。
【在 k***e 的大作中提到】 : 不用 : 要
|
r****t 发帖数: 10904 | 108 uninstall freepbx, 保留 asterisk 就行了。nonoh 设置应该很多,往前面找找。
【在 c*******o 的大作中提到】 : 还有个问题,原来用asterisk + freebpx + sipgate : 怎么用这个? 要重新装所有的东西么?还是就把那 : 四个set up/configue 文件upload以西就好了? : 另外,怎么set up打国际长途。能不能给个link, : 我自己再学习学习。 : 人老了,实在是不想折腾了。
|
s*******a 发帖数: 8827 | |
c*******o 发帖数: 1722 | 110 how to uninstall freepbx.
after re-compiling/install asterisk-1.8.7. the system stopped working.
【在 r****t 的大作中提到】 : uninstall freepbx, 保留 asterisk 就行了。nonoh 设置应该很多,往前面找找。
|
|
|
r****t 发帖数: 10904 | 111 如何装的 freepbx? 一个 install法对应一定 uninstall 方法.
【在 c*******o 的大作中提到】 : how to uninstall freepbx. : after re-compiling/install asterisk-1.8.7. the system stopped working.
|
c*******o 发帖数: 1722 | 112 全部重装了,终于摆脱了freepbx.
【在 r****t 的大作中提到】 : 如何装的 freepbx? 一个 install法对应一定 uninstall 方法.
|
c*******o 发帖数: 1722 | 113 how to uninstall freepbx.
after re-compiling/install asterisk-1.8.7. the system stopped working.
【在 r****t 的大作中提到】 : uninstall freepbx, 保留 asterisk 就行了。nonoh 设置应该很多,往前面找找。
|
r****t 发帖数: 10904 | 114 如何装的 freepbx? 一个 install法对应一定 uninstall 方法.
【在 c*******o 的大作中提到】 : how to uninstall freepbx. : after re-compiling/install asterisk-1.8.7. the system stopped working.
|
c*******o 发帖数: 1722 | 115 全部重装了,终于摆脱了freepbx.
【在 r****t 的大作中提到】 : 如何装的 freepbx? 一个 install法对应一定 uninstall 方法.
|
C*******1 发帖数: 422 | 116 以上一切一切都可以休矣,obihai秒杀一切。 |
u****r 发帖数: 478 | 117 就买一个JS200-FX v2.0 Asterisk VoIP PBX IAX SIP Wifi Google Voice, Ebay上卖
85$US+15$USShipping, 可以吗? 不想太折腾.
【在 C*******1 的大作中提到】 : 完美Asterisk+GV,折腾ipkall/sipgate的可以休矣 : 首先谢谢cubs的贴 : http://www.mitbbs.com/clubarticle_t/voip/31214271.html : 按照里面提到的link : http://forums.plugpbx.org/index.php/topic,247.msg1168.html. : 折腾了一番,顺利地装上了asterisk 1.8 + google voice. 效果很好。 : 控诉一下以前用的asterisk + freepbx + ipkall/sipgate。拨号之后等待,听75+ : music,再等待,才接通。我也用nonoh outbound trunk打中国,可要命的是每隔几个 : 星期,nonoh就出不去了,dockstar重启一下就又好了。最后不得不弄了个crontab每天 : reboot一下. shame.
|
e*i 发帖数: 10288 | 118 just buy one obi100 or obi110. About $40-$50
from amazon.
【在 u****r 的大作中提到】 : 就买一个JS200-FX v2.0 Asterisk VoIP PBX IAX SIP Wifi Google Voice, Ebay上卖 : 85$US+15$USShipping, 可以吗? 不想太折腾.
|
C*******1 发帖数: 422 | 119 Right answer.
【在 e*i 的大作中提到】 : just buy one obi100 or obi110. About $40-$50 : from amazon.
|