Hi all! Please I need someone that have already done an H.323 - SIP gateway to help me with some problems. I can stablish calls from a SIP telephone to a H.323, but I can't do vice versa... (problems with port 1719- when the gatekeeper tries to contact with asterisk at this port, it is unrecheable...). Please someone can help me? Regards, Mireia
h323 runs on port 1720. Your gatekeeper is trying to contact the wrong port number. On Tue, 2003-10-14 at 10:02, Mireia Munoz de jesus wrote:> Hi all! > > Please I need someone that have already done an H.323 - SIP gateway to help me > with some problems. I can stablish calls from a SIP telephone to a H.323, but I > can't do vice versa... (problems with port 1719- when the gatekeeper tries to > contact with asterisk at this port, it is unrecheable...). > > Please someone can help me? > > Regards, > > Mireia > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users-- Sample configs and more: http://www.fnords.org/~eric/asterisk/ BTEL Consulting +1-850-484-4535 x2111 (Pensacola) +1-504-595-3916 x2111 (New Orleans) +1-877-677-9643 x2111 (Toll Free)
I am trying to configure * to route calls from SIP extension to an 
externeal H.323 gatekeeper and vice versa.
The route from * to the gatekeeper is a simple ENUM call and work fine:
[outbound][outbound]
exten => _3XXX,1,Dial,H323/${EXTEN}@10.3.1.100
One Snom100 phone is defined in sip.conf:
[snom]
type=friend
host=dynamic
dtmfmode=rfc2833
mailbox=1000
context=local
callerid="Operator Office" <1000>
in extensions.conf it is defined as extension 1000:
[local]
include => voicemail
include => outbound
include => inbound
; SIP Phone Operator Office
exten => 1000,1,Dial,SIP/snom|30|tr
exten => 1000,2,Voicemail,u1000
exten => 1000,102,Voicemail,b1000
When I  call a H.323 telephone  behind the gatekeeper this  telephone 
shows a callerid "root" as name and the Asterisk IP address without
the
original extension 1000. I can define an alias in h323.conf but every 
call to the gatekeeper will have this callerid:
 [olaf-snom]
 type=h323
 e164=1000
 context=local
But I want to transmit  the original callerid as defined in sip.conf via 
the H.323 gatekeeper to a H.322 phone. How to manage this ??
----------------------------------------------------------------------------------------------------------------------------------------------------------------------
I have defined a inbound gatekeeper in h323.conf:
[Corponet]
type=user
host=10.3.1.100
context=inbound
incominglimit=4
What else has to be in the extensions.conf if a H.323 phone want to call 
me at: 1000@asteriskIPAddress ??
regards
Olaf
Olaf Menzel wrote:> But I want to transmit the original callerid as defined in sip.conf > via the H.323 gatekeeper to a H.322 phone. How to manage this ??How about Dial,H323/user@host.tld/${CALLERIDNUM} ? However you will have issues with the gatekeeper if it is expecting a specific H.323 ID from your endpoint. Jeremy McNamara