Dears
Environment: Asterisk 11.4
Objective: attempting H.323 trunk integration with “Polycom CMA” using ooh323 module.
When placing H323 calls from the Polycom CMA, the call goes through the trunk (as shown by tcpdump) but is rejected by Asterisk with the following error in /var/log/asterisk/h323_log
==================
10:40:28:564 ERROR: Security denial remote sig IP isn’t a socket ip, 10.44.1.156 not 10.71.0.55 (incoming, ooh323c_1)
10:40:28:565 ERROR:Failed ooH2250Receive - Clearing call (incoming, ooh323c_1)
10.44.1.156 being IP address of H323 client registered to Polycom CMA, 10.71.0.55 being the address of Polycom CMA.
tcpdump shows “disengageRequest” H.225 sent by Asterisk to Polycom CMA.
If you have any idea of the problem, please let me know…
Thanks
Below the relevant config
10.100.202.88 is IP of the Asterisk server.
[size=85]========ooh323.conf=================
[general]
port=1720
bindaddr=10.100.202.88
h323id=AsteriskPBX
mediawaitforconnect=yes
;callerid=AsteriskPBX
gateway=yes
gatekeeper = 10.71.0.55
;gatekeeper=DISABLE
allowGKRouted=yes
AcceptAnonymous=yes
faststart=yes
h245tunneling=yes
logfile=/var/log/asterisk/h323_log
;
;Following values apply to all users/peers/friends defined below, unless
;overridden within their client definition
;
context=default
rtptimeout=60
disallow=all
allow=ulaw
dtmfmode=rfc2833
progress_setup=8
progress_alert=8
directmedia=yes
directrtpsetup=yes
;
;Users definition
;Section header is extension
;
[10.71.0.55]
type=peer
;context=default
ip=10.71.0.55
port=1720
e164=12345
disallow=all
allow=ulaw
rtptimeout=60
dtmfmode=rfc2833
===========extensions.conf===========================
[general]
static=yes
writeprotect=no
autofallthrough=yes
clearglobalvars=no
[globals]
TRUNKMSD=1 ; MSD digits to strip (usually 1 or 0)
MAYAH0 => SIP/123450
MAYAH1 => SIP/123451
[default]
;exten => 123450,1,Dial(SIP/123450)
exten => 123450,1,Echo()
exten => 123450,n,Playback(demo-echotest)
exten => 123450,n,Hangup
exten => 123451,1,Dial(${MAYAH1})
exten => 123451,n,Hangup
exten => _XXX.,1,Dial(OOH323/10.71.0.55/${EXTEN})
exten => _XXX.,n,Dial(OOH323/${EXTEN}@10.71.0.55)
exten => _XXX.,n,Hangup
======================================[/size]