Displaying 4 results from an estimated 4 matches for "disalow".
Did you mean:
disallow
2005 Jan 21
0
Codec conversion sip peer <> Asterisk
Hi!
There's any way to set up a call using G726 (sip peer) receive it on Asterisk convert it to G711Mu to send it to PSTN broadband termination?
I've put the following in sip.conf:
disalow=all
allow=gsm
allow=g726 (my TAs use G726 32K)
best regards,
Helder
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050121/75047b05/attachment.htm
2005 Aug 06
0
g729 pass-thru for sip provider and g711 ulaw for conference and voicemail
Hello,
I'd like to use g729 pass-thru when I dial out to a sip provider from my
IP phone but because I have no license for g729 I'd like to use g711 ulaw
for asterisk voicemail, conference bridge and other services.
When I set in [general] section of sip.conf the following:
disalow=all
allow=g729
allow=ulaw
the g279 pass-thru works fine with my SIP provider but
when I call the conference extention the call gets dropped because it
wants to use g729 as well but there is no license. Would it be possible to
use g711 ulaw in this case somehow?
Any ideas?
Thanks.
Regards, Gyorg...
2009 Nov 15
1
Call IAX2 => "Call rejected, CallToken Support required"
...e second server, i have into iax.conf:
[general]
bindport=4569
bindaddr=0.0.0.0
language=fr
bandwidth=low
jitterbuffer=no
forcejitterbuffer=no
autokill=yes
calltokenignore=IP_First8asterisk_Server
[Voip]
type=friend
user=VoIP
secret=XXXXX
host=NAME_DNS_FIRST_SERVER
requirecalltoken=no
qualify=yes
disalow=all
allow=alaw
allow=g729
context=Incoming
Thanks for your help
Jerome
2010 Feb 22
2
Load balance outgoing calls
...Without resorting to OpenSER or other proxies (as my provider also
uses IAX), is there a way I can load balance outgoing channels in
Asterisk?
For example an IAX peer like:
[iax_provider]
type=peer
username=myprovider
host=xxx.xxx.xxx.10
host=xxx.xxx.xxx.11
host=xxx.xxx.xxx.12
secret=verysecret
disalow=all
allow=g729
Is there any way I can balance calls between all of the hosts in the
providers description? In fact, if I set the dialplan like:
exten => _X.,n,Dial(IAX2/iax_provider/${EXTEN}
what IP addres will receive the call? host 10, 11 or 12?
I know DAHDI can balance outgoing calls bet...