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: &lt;iq from=&quot;+<a href="http://17174695631@voice.google.com/srvres-MTAuMTc2LjEwOC4xNjo5ODQ4">17174695631@voice.google.com/srvres-MTAuMTc2LjEwOC4xNjo5ODQ4</a>&quot; to=&quot;<a href="http://ldardini@gmail.com/asterisk438D86E0">ldardini@gmail.com/asterisk438D86E0</a>&quot; id=&quot;jingle:10.176.108.16-15899749:1:457BCF36&quot; type=&quot;set&quot;&gt;&lt;ses:session type=&quot;initiate&quot; id=&quot;<a href="mailto:SIP784359174@10.177.37.1">SIP784359174@10.177.37.1</a>&quot; initiator=&quot;+<a href="http://17174695631@voice.google.com/srvres-MTAuMTc2LjEwOC4xNjo5ODQ4">17174695631@voice.google.com/srvres-MTAuMTc2LjEwOC4xNjo5ODQ4</a>&quot; xmlns:ses=&quot;<a href="http://www.google.com/session">http://www.google.com/session</a>&quot;&gt;&lt;pho:description xmlns:pho=&quot;<a href="http://www.google.com/session/phone">http://www.google.com/session/phone</a>&quot;&gt;&lt;pho:payload-type id=&quot;0&quot; name=&quot;PCMU&quot; clockrate=&quot;8000&quot;/&gt;&lt;pho:payload-type id=&quot;101&quot; name=&quot;telephone-event&quot;/&gt;&lt;/pho:description&gt;&lt;transport behind-symmetric-nat=&quot;false&quot; can-receive-from-symmetric-nat=&quot;false&quot; xmlns=&quot;<a href="http://www.google.com/transport/raw-udp">http://www.google.com/transport/raw-udp</a>&quot;/&gt;&lt;transport xmlns=&quot;<a href="http://www.google.com/transport/p2p">http://www.google.com/transport/p2p</a>&quot;/&gt;&lt;/ses:session&gt;&lt;/iq&gt;<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 =&gt; { <br>      NoOp( Call from Gtalk );<br>      Dial(SIP/************@************,60,r);<br>     };<br>}<br><br><br>