Asterisk 1.8 integrate with vTiger 5.4

Hi ;

anybody come across install Asterisk 1.8 integrate with vTiger 5.4 ? From my finding is not supported. Anybody have the solution on this type of integration ? Pls advice. Thanks.

rgds
tan

You should ask to Vtiger forum/developers.

Edit the Asterisk manager.conf
[]
secret=
deny=0.0.0.0/0.0.0.0
permit=/255.255.255.0
read=system,call,log,verbose,command,agent,user write=system,call,log,verbose,command,agent,user

where
is the user extension (say 201)
is the password for that extension (say abcdef)
is the IP that you want to be able to access asterisk (for e.g. 192.168.0.57/255.255.255.0)
If you have multiple IP’s, put them on separate lines like:
permit=192.168.0.57/255.255.255.0
permit=192.168.0.58/255.255.255.0

then setup the Vtiger settings

wiki.vtiger.com/index.php/PBX_Manager_Module

Hi ;

what i mean is “popout” at vTiger when the incoming caller id call in. The vTiger will launch the particular user database. Can vTiger 5.4 work with Asterisk 1.8 supported this feature ? Thanks.

rgds
tan

The vtiger-asterisk integration will allow users to use vtiger to create calls and receive notifications on incoming calls using the Asterisk Call Manager API provided by Asterisk. the previous link describes configuration of vtiger CRM to work with Asterisk. Here is the link back again wiki.vtiger.com/index.php/PBX_Manager_Module and regarding if vTiger 5.4 is supported by Asterisk i think so, but too you will need to look for some help in the Vtiger Forum.

Hey,

You may want to have a look at GoAutodial.

It’s full distro supplied with Asterisk and Vtiger bound together.

Unfortunately, AFAIK, only Asterisk 1.4 and Vtiger 5.1 are supported.

Rgds,
Constantin

Constantin ;

This is mainly for inbound route, base on Briker(asterisk 1.8) with vTiger. Can current version Asterisk 1.8 integrate with vTiger 5.4 support with “popout” feature ?

rgds
tan

[quote=“ambiorixg12”]Edit the Asterisk manager.conf
[]
secret=
deny=0.0.0.0/0.0.0.0
permit=/255.255.255.0
read=system,call,log,verbose,command,agent,user write=system,call,log,verbose,command,agent,user

where
is the user extension (say 201)
is the password for that extension (say abcdef)
is the IP that you want to be able to access asterisk (for e.g. 192.168.0.57/255.255.255.0)
If you have multiple IP’s, put them on separate lines like:
permit=192.168.0.57/255.255.255.0
permit=192.168.0.58/255.255.255.0

then setup the Vtiger settings

wiki.vtiger.com/index.php/PBX_Manager_Module[/quote]

Potan but i posted the steps for the integration why dont you give a try and let us know where you are having issues, the comunity can help you but you are the one that have to start

I would like to add my 2 cents here:

I did have the same problem. I have a Elastix working for a few years and decide to adopt VTiger 5.4 (stabilities reasons) and tried several tips but none work. The solution was simple than I expected:

On manager.conf you must ADD VTIGER user (same that you’ll configure on VTIGER PBX Manager Asterisk login information)

On manager.conf the default is:

[UserAdmin]
secret = password
deny=0.0.0.0/0.0.0.0
permit=127.0.0.1/255.255.255.0
read = system,call,log,verbose,command,agent,user
write = system,call,log,verbose,command,agent,user

Even so it still not working, so I solve my problem with this:

[UserAdmin]
secret = password
deny=0.0.0.0/0.0.0.0
permit=127.0.0.1/255.255.255.0
permit=192.168.0.0/255.255.255.0
read = system,call,log,verbose,command,agent,user,config,command,dtmf,reporting,cdr,dialplan,originate
write = system,call,log,verbose,command,agent,user,config,command,dtmf,reporting,cdr,dialplan,originate

================================================

I found some sites indicate the solution is about to “permit” individual IP for each address in the network that uses phones. My solution is simples but could put in risk Asterisk (Elastix in this case) - I change the Permition to all addresses in network with “permit=192.168.0.0/255.255.255.0” and worked fine.

If you fear that you could have security issue, try to populated with individual permit per IP. If not, test my solution. It will work!

Last thing: It is not important at all to select the correct version of Asterisk in VTiger if you use 1.6 or above. Just set 1.6 and be happy!

Regards