Hola!
I'm using asterisk as H.323 -> PRI gateway. First call goes
thru ok, second concurrent call fails with:
Aug  6 11:52:30 DEBUG[737292]: chan_h323.c:1038 setup_incoming_call: Sending  to
context [ip2pri]
    -- Executing Dial("H323/ip$192.168.32.25:60271/984",
"Zap/1/9541163107100") in new stack
Aug  6 11:52:30 NOTICE[753677]: app_dial.c:554 dial_exec: Unable to create
channel of type 'Zap'
Aug  6 11:52:30 NOTICE[753677]: app_dial.c:554 dial_exec: Unable to create
channel of type 'Zap'
    == Everyone is busy at this time
Aug  6 11:52:40 WARNING[753677]: pbx.c:1836 ast_pbx_run: Timeout, but no rule
't' in context 'ip2pri'
Aug  6 11:52:40 WARNING[753677]: pbx.c:1836 ast_pbx_run: Timeout, but no rule
't' in context 'ip2pri'
Aug  6 11:52:40 DEBUG[81926]: chan_h323.c:1179 cleanup_connection: Cleaning up
our mess
My configs are:
h323.conf:
[general]
port = 1720
bindaddr = 0.0.0.0
disallow=all
allow=g729
gatekeeper = DISABLE
context=ip2pri
[ip2pri] ; is this needed?
type=user
context=ip2pri
extensions.conf:
[general]
static=yes
writeprotect=yes
[globals]
[ip2pri]
exten => _9.,1,Dial(Zap/1/${EXTEN:0}) ; i must send the 9 to the PRI...
[default]
zapata.conf:
[channels]
context=pri2ip
switchtype=euroisdn
signalling=pri_net  ; pri_net is ok
group=1
channel => 1-15,17-31
Some help?
Thanks,
					HoraPe
---
Horacio J. Pe?a
horape@compendium.com.ar
horape@uninet.edu
Hola Horacio, Comentarios en l?nea... Horacio J. Pe?a wrote:> Hola! > > I'm using asterisk as H.323 -> PRI gateway. First call goes > thru ok, second concurrent call fails with: > > Aug 6 11:52:30 DEBUG[737292]: chan_h323.c:1038 setup_incoming_call: Sending to context [ip2pri] > -- Executing Dial("H323/ip$192.168.32.25:60271/984", "Zap/1/9541163107100") in new stack > Aug 6 11:52:30 NOTICE[753677]: app_dial.c:554 dial_exec: Unable to create channel of type 'Zap' > Aug 6 11:52:30 NOTICE[753677]: app_dial.c:554 dial_exec: Unable to create channel of type 'Zap' > == Everyone is busy at this time > Aug 6 11:52:40 WARNING[753677]: pbx.c:1836 ast_pbx_run: Timeout, but no rule 't' in context 'ip2pri' > Aug 6 11:52:40 WARNING[753677]: pbx.c:1836 ast_pbx_run: Timeout, but no rule 't' in context 'ip2pri' > Aug 6 11:52:40 DEBUG[81926]: chan_h323.c:1179 cleanup_connection: Cleaning up our mess > > > My configs are: > > h323.conf: > > [general] > port = 1720 > bindaddr = 0.0.0.0 > disallow=all > allow=g729 > gatekeeper = DISABLE > context=ip2pri > [ip2pri] ; is this needed? > type=user > context=ip2pri > > extensions.conf: > > [general] > static=yes > writeprotect=yes > [globals] > > [ip2pri] > exten => _9.,1,Dial(Zap/1/${EXTEN:0}) ; i must send the 9 to the PRI...^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Replace Zap/1 with Zap/g1 Saludos! -- Nicol?s Gudi?o House Internet S.R.L. Buenos Aires - Argentina
Your trying to open channel 1 (ZAP/1) to create
another call....
If you grouped all your channel correctly, then
try using ZAP/g1 (see that "g" before the "1")
in /etc/asterisk/zapata.conf you should have
something like
group = 1
channel => 1-15,17-31
In that case everything should work fine!
Regards,
Marc
--
Network Manager                Marc Storck
LuxAdmin.Org                  
mstorck@luxadmin.org
Internet Service Provider     
http://www.luxadmin.org
15, route d'Esch               Phone: +352 2727
3030
L-4544 Belvaux                 Fax:   +352 2659
0873
-------------- LuxAdmin powered service
---------------
http://www.Gateway.lu          Your gateway to the
net
     Advantages of ADSL solutions by LuxAdmin:
             - price: cheap and clear
             - products: proven quality
             - support: friendly and helpful
-------------------------------------------------------
----- Originalnachricht -----
Betreff: [Asterisk-Users] E1 monochannel :-(
Von: horape@tinuviel.compendium.com.ar
An: asterisk-users@lists.digium.com
Datum: 06-08-2004 17:18
> Hola!
> 
> I'm using asterisk as H.323 -> PRI gateway.
First call goes> thru ok, second concurrent call fails with:
> 
> Aug  6 11:52:30 DEBUG[737292]: chan_h323.c:1038
setup_incoming_call: Sending  to context [ip2pri]>     -- Executing
Dial("H323/ip$192.168.32.25:60271/984",
"Zap/1/9541163107100") in new stack> Aug  6 11:52:30 NOTICE[753677]: app_dial.c:554
dial_exec: Unable to create channel of type
'Zap'> Aug  6 11:52:30 NOTICE[753677]: app_dial.c:554
dial_exec: Unable to create channel of type
'Zap'>     == Everyone is busy at this time
> Aug  6 11:52:40 WARNING[753677]: pbx.c:1836
ast_pbx_run: Timeout, but no rule 't' in context
'ip2pri'> Aug  6 11:52:40 WARNING[753677]: pbx.c:1836
ast_pbx_run: Timeout, but no rule 't' in context
'ip2pri'> Aug  6 11:52:40 DEBUG[81926]: chan_h323.c:1179
cleanup_connection: Cleaning up our mess> 
> 
> My configs are:
> 
> h323.conf:
> 
> [general]
> port = 1720
> bindaddr = 0.0.0.0
> disallow=all
> allow=g729
> gatekeeper = DISABLE
> context=ip2pri
> [ip2pri] ; is this needed?
> type=user
> context=ip2pri
> 
> extensions.conf:
> 
> [general]
> static=yes
> writeprotect=yes
> [globals]
> 
> [ip2pri]
> exten => _9.,1,Dial(Zap/1/${EXTEN:0}) ; i must
send the 9 to the PRI...> [default]
> 
> zapata.conf:
> 
> [channels]
> context=pri2ip
> switchtype=euroisdn
> signalling=pri_net  ; pri_net is ok
> group=1
> channel => 1-15,17-31
> 
> 
> Some help?
> 
> Thanks,
> 					HoraPe
> ---
> Horacio J. Pe?a
> horape@compendium.com.ar
> horape@uninet.edu
> _______________________________________________
> Asterisk-Users mailing list
> Asterisk-Users@lists.digium.com
>
http://lists.digium.com/mailman/listinfo/asterisk-users> To UNSUBSCRIBE or update options visit:
>   
http://lists.digium.com/mailman/listinfo/asterisk-users
On Fri, 6 Aug 2004, Horacio [iso-8859-1] J. Pe?a wrote:> I'm using asterisk as H.323 -> PRI gateway. First call goes > thru ok, second concurrent call fails with: > > Aug 6 11:52:30 DEBUG[737292]: chan_h323.c:1038 setup_incoming_call: Sending to context [ip2pri] > -- Executing Dial("H323/ip$192.168.32.25:60271/984", "Zap/1/9541163107100") in new stack > Aug 6 11:52:30 NOTICE[753677]: app_dial.c:554 dial_exec: Unable to create channel of type 'Zap' > Aug 6 11:52:30 NOTICE[753677]: app_dial.c:554 dial_exec: Unable to create channel of type 'Zap' > == Everyone is busy at this time > Aug 6 11:52:40 WARNING[753677]: pbx.c:1836 ast_pbx_run: Timeout, but no rule 't' in context 'ip2pri' > Aug 6 11:52:40 WARNING[753677]: pbx.c:1836 ast_pbx_run: Timeout, but no rule 't' in context 'ip2pri' > Aug 6 11:52:40 DEBUG[81926]: chan_h323.c:1179 cleanup_connection: Cleaning up our messWouldn't you rather dial Zap/g1/... and use the group of channels rather than just trying to use the first...? Regards, Steve