Are there parallels to Asterisk AMI and AGI in FreeSWITCH? [closed]
Asked Answered
O

3

7

Asterisk has Asterisk Manager Interface (AMI) and Asterisk Gateway Interface (AGI), using which one can trigger PHP scripts at certain events from Asterisk. Using the same PHP scripts can also instruct Asterisk what to do next to a call/conference. Are there parallels to AMI and AGI in FreeSWITCH?

Optative answered 29/12, 2011 at 0:26 Comment(2)
possible duplicate of Asterisk vs FreeSwitch, are there parallels to AMI & AGI in FreeSWITCHOvertrick
@Overtrick because part of the previous question requested comparison between the scenarios where you would use Asterisk vs FreeSWITCH it got down voted, and closed. So now I posted this other half which has nothing to do with the comparison.Optative
W
10

These are good questions. I just wanted to add a few things to what @dkwiebe said (which is correct, BTW).

The AMI equivalent in FreeSWITCH is the event socket. (Technically it's not the "Event Socket Library" or ESL, which is an abstraction layer for writing programs that use the event socket. I just wanted to make that distinction.) In fact, the FreeSWITCH equivalent of "asterisk -r" is actually an ESL-based program called "fs_cli" - short for FreeSWITCH Command Line Interface. The fs_cli program is a great example of what you can accomplish with ESL.

Also, there is no reason that you cannot use an ESL program to do many of the things that can be done with AGI scripts. The ESL "connection object" can "lock on" to a single call leg and control it. There are examples on the wiki and the forthcoming FreeSWITCH Cookbook will have some recipes on the subject. (Full disclosure: I am a co-author of the FreeSWITCH Cookbook.)

Another ESL-related method of controlling calls like AGI is with the fs_ivrd daemon. It's less commonly used than ESL but is a nice option for AGI-like scripting. See this wiki page for more details.

Lastly, I would like to mention that Lua is a great choice for doing scripting/logic/etc. in call control. It is simple, light, and easy to learn. In the lab we've seen a few thousand concurrent Lua-controlled calls on an 8-core machine. Lua works even in some very demanding environments.

Feel free to join #freeswitch on irc.freenode.net to discuss your questions with the FreeSWITCH community.

Wiltonwiltsey answered 2/1, 2012 at 17:55 Comment(1)
Thank you for such informative answers. In AGI I can write code in PHP and do not need to learn anything new for implementing logic. So the first question, using PHP scripts would still be an option instead of Lua? Second, if PHP is used instead of Lua how much overhead will it pose on the system?Optative
W
3

AGI are for scripts used durring a call (i.e. called from dialplan durrign dialplan execution). Scripts that listen to the AMI and wait for events are standalone. While that latter, can, technically, do the former's job as well, you are much better off keeping them separate.

Westward answered 29/12, 2011 at 21:40 Comment(3)
I understand that part. I've been lately listening that FreeSWITCH is a better choice, and more reliable than Asterisk. Since I am using AMI and AGI currently, I wonder if there are parallels in FreeSWITCH for these two things.Optative
For the distinction between AMI and AGI, I've never heard the use case for each split like that. Can you expand your answer, or cite a source? (Still learning Asterisk.)Clematis
Agi's by their nature are kicked off by asterisk, during a call. There is no other way to initiate an agi script. On the other hand, you can start any script/process and have it connect to the AMI and take react to to events. Source: Core FreePBX developer for over half a decade.Westward
O
2

@dkwiebe has given the answer on serverfault- https://serverfault.com/a/345513/105376

For the AMI you're looking for the Event Socket Library. There are a few examples available on the mod_event_socket page.

AGI is a little different. You can do things similar in FreeSWITCH but they would recommend using lua. I've personally used the FreeSWITCH mod_perl with good results.

Optative answered 2/1, 2012 at 0:41 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.