Are there parallels to Asterisk AMI and AGI in FreeSWITCH?

旧街凉风 提交于 2020-01-01 09:43:13

问题


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?


回答1:


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.




回答2:


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.




回答3:


There's a page on the FreeSWITCH wiki addressing most of these "Asterisk to FreeSWITCH" questions: Rosetta Stone.




回答4:


@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.



来源:https://stackoverflow.com/questions/8662846/are-there-parallels-to-asterisk-ami-and-agi-in-freeswitch

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!