gtalk Integration.

bijuvp
Posts: 2
Member Since:
2006-10-02

does anybody know to use gtalk with trixbox 2.0

Instructions please.

I tried this instructions on this web site.
http://www.voip-info.org/wiki/view/Asterisk+Speaks+with+Google+Talk

it doen't work. it first complains abot some packages missing and finally the ./configure fails.

Thank You in Advance.



bradgentry
Posts: 6
Member Since:
2007-01-29
Re: gtalk Integration.

That's a great question I've been wondering myself. Anyone made any headway in this area?



wglenncamp
Posts: 74
Member Since:
2006-11-02
Re: gtalk Integration.

After you download the iksemel
Here is what you need to do:

yum -y install libtool autoconf gnutls-devel
 ./autogen.sh
 ./configure --prefix=/usr
 make
 make check
 make install 

Then you will need to configure your files. As shown on http://www.voip-info.org/wiki/view/Asterisk+Speaks+with+Google+Ta...

NOTE: I don't have this working yet. I have just been able to get it to compile and install. I think that Asterisk 1.4 has gtalk capabilities built in.

HTH

--

Netstar Solutions, LLC.
http://www.netstarsolutions.com



mattcero
Posts: 40
Member Since:
2007-02-19
Gtalk and extensions.conf

The extensions.conf file is fantastically long. Could someone tell me where to put the Gtalk sections? I don't want to sandwich them just anywhere. Thanks. How does Gtalk work anyway? Matt



icdoctor
Posts: 31
Member Since:
2007-02-14
I've done some testing in

I've done some testing in the past with gtalk and found it to be very buggy. The jabber protocol is very very "CHATTY" in the asterisk CLI. Anyway if you want to play here are my notes.

Step 1
Run this script
#########################
#!/bin/bash

#IKSEMEL for gtalk googletalk

IKSEMEL_FILE="iksemel-1.3.tar.gz"

echo "Standby compiling/installing IKSEMEL engine for gtalk..."
echo "Source file: $IKSEMEL_FILE"
echo
sleep 2
cd /usr/src

wget http://iksemel.googlecode.com/files/$IKSEMEL_FILE

echo
echo "BEGIN UNPACKING $IKSEMEL_FILE"
echo
tar -xzf $IKSEMEL_FILE
echo
echo "END UNPACKING $IKSEMEL_FILE"
echo

IKSEMELDIR=`echo $IKSEMEL_FILE | sed 's/\.tar\.gz//'`
ln -s $IKSEMELDIR iksemel
cd /usr/src/iksemel

./configure --prefix=/usr && make clean && make && make install-strip
if [ "$?" -ne "0" ] ;then
echo
echo "WARNING: Iksemel failed to install..."
echo
sleep 5
fi
cd /usr/src
rm -f $IKSEMEL_FILE
echo
echo
echo "IKSEMEL COMPLETE.."
#############################

-
-
-

Step 2
Create /etc/asterisk/gtalk.conf
#################################
####gtalk.conf

[general]
context=default
allowguest=yes

externip=66.23.191.200

[guest]
disallow=all
allow=ulaw
context=from-trunk
#################################

-
-
-

Step 3
Create /etc/asterisk/jabber.conf
#################################
####jabber.conf

[general]
debug=yes
autoprune=no
autoregister=yes

[asterisk]
type=friend
serverhost=talk.google.com
username=yourusername@gmail.com/Talk
secret=yoursecret
port=5222
usetls=yes
usesasl=yes
insecure=very
nat=yes
statusmessage="Asteriskl"
timeout=100
buddy=yourbuddy@gmail.com
#################################

-
-
-

Step 4
verify /etc/asterisk/modules.conf
#################################
#####modules.conf

;comment res_jabber.so & chan_gtalk.so for google talk (gtalk)
load => res_jabber.so
load => chan_gtalk.so
#################################

-
-
-

These are the basic steps which should get you started. If I remember correctly you will need to recompile asterisk after the above steps for it to enable IKSEMEL.

Have Fun

Mark A. Shearer
http://www.digantel.org



wanycn
Posts: 13
Member Since:
2006-11-22
How to dial digits from Gtalk if call to * and fail to IVR

Thanks for the instruction. I miss step 4 and now works great.

One more question, If I direct gtalk call to IVR and have menu choice, can caller from gtalk choose from menu or dial extension? Like caller from regular phone or SIP phone.



afzal
Posts: 5
Member Since:
2009-10-23
how can asterisk accept gtalk invitations.

I did the configuration as you have given but my question is when i add the sip user (1001@mysipserver.com) to gtalk , it sends invitation and how do i accept the invitation which is send to my sip user (1001@mysipserver.com)?
i am not very familiar with gtalk+asterisk integrations...so hope to get an good solution.



Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.