Hello,<br>I have a Google Voice phone number and want to connect it to my asterisk box to have calls handled to my SIP account.<br><br>When I call the number I receive the correct INCOMING request on Jabber portion of asterisk, but the call is not connected to the gtalk part.<br>
<br>JABBER: asterisk INCOMING: <iq from="+<a href="http://17174695631@voice.google.com/srvres-MTAuMTc2LjEwOC4xNjo5ODQ4">17174695631@voice.google.com/srvres-MTAuMTc2LjEwOC4xNjo5ODQ4</a>" to="<a href="http://ldardini@gmail.com/asterisk438D86E0">ldardini@gmail.com/asterisk438D86E0</a>" id="jingle:10.176.108.16-15899749:1:457BCF36" type="set"><ses:session type="initiate" id="<a href="mailto:SIP784359174@10.177.37.1">SIP784359174@10.177.37.1</a>" initiator="+<a href="http://17174695631@voice.google.com/srvres-MTAuMTc2LjEwOC4xNjo5ODQ4">17174695631@voice.google.com/srvres-MTAuMTc2LjEwOC4xNjo5ODQ4</a>" xmlns:ses="<a href="http://www.google.com/session">http://www.google.com/session</a>"><pho:description xmlns:pho="<a href="http://www.google.com/session/phone">http://www.google.com/session/phone</a>"><pho:payload-type id="0" name="PCMU" clockrate="8000"/><pho:payload-type id="101" name="telephone-event"/></pho:description><transport behind-symmetric-nat="false" can-receive-from-symmetric-nat="false" xmlns="<a href="http://www.google.com/transport/raw-udp">http://www.google.com/transport/raw-udp</a>"/><transport xmlns="<a href="http://www.google.com/transport/p2p">http://www.google.com/transport/p2p</a>"/></ses:session></iq><br>
<br>No other messages are logged. Where is my mistake?<br><br>I am using asterisk 1.6.2.7 (Ubuntu packaging) and following there are the relevant files.<br><br>Thank you<br><br>Leandro<br><br>####### jabber.conf<br><br>[general]<br>
autoregister=yes<br><br>[asterisk]<br>type=client<br>serverhost=<a href="http://talk.google.com">talk.google.com</a><br>username=<a href="mailto:ldardini@gmail.com">ldardini@gmail.com</a><br>secret=**********<br>priority=1<br>
port=5222<br>usetls=yes<br>usesasl=yes<br>buddy=<a href="mailto:ldardini@gmail.com">ldardini@gmail.com</a><br>status=available<br><br>####### gtalk.conf<br><br>[general]<br>context=default<br>bindaddr=0.0.0.0<br>allowguest=yes<br>
<br>[guest] <br>disallow=all <br>allow=ulaw<br>context=google-in<br><br>[ldardini]<br>username=<a href="mailto:ldardini@gmail.com">ldardini@gmail.com</a><br>disallow=all<br>allow=ulaw<br>context=google-in <br>
connection=asterisk<br><br>######## extension.ael<br><br>context google-in {<br> s => { <br> NoOp( Call from Gtalk );<br> Dial(SIP/************@************,60,r);<br> };<br>}<br><br><br>