[asterisk-users] how to add-edit-delete entery into asterisk conf files

Tzafrir Cohen tzafrir.cohen at xorcom.com
Sun Sep 4 08:00:07 CDT 2011


On Fri, Sep 02, 2011 at 04:58:52PM +0530, virendra bhati wrote:
> Hi list,
> 
> I want ot do basic work (add-edit-delete) into asterisk configuration files,
> like sip.conf, manager.conf,musiconhold.conf etc.
> 
> Please guide me how to configure all these files from from AMI connection. I
> am able to login into AMI from Login action but I want to do more task in to
> it.
> 
> *AMI login:- *
> 
> *login.php*
> 
> <?php
> $socket = fsockopen("127.0.0.1","5038", $errno, $errstr, 30);
> fputs($socket, "Action: Login\r\n");
> fputs($socket, "UserName: root\r\n");
> fputs($socket, "Secret: energy\r\n\r\n");
> ?>
> *AMI command:-*
> 
> Below commands are for musiconhold.conf. I want to add new MOH context into
> it.
> <?php
> include("login.php");
>   fputs($socket, "Action: UpdateConfig\r\n");
>   fputs($socket, "Filename: musiconhold.conf\r\n");
>   fputs($socket, "Srcfilename: musiconhold.conf\r\n");
>   fputs($socket, "Dstfilename: musiconhold.conf\r\n");
>   fputs($socket, "Action-000000: newcat\r\n");
>   fputs($socket, "Cat-000000: bhavik\r\n");
>   fputs($socket, "mode: files\r\n");
>   fputs($socket, "directory: /var/lib/asterisk/moh\r\n");
>   fputs($socket, "Reload: yes\r\n");
>   fputs($socket, "ActionID: 9873497149817\r\n");
>   fputs($socket, "Action: Logoff\r\n\r\n");

You're not really editing. You're writing.

Note the following:

* It requires Asterisk to be running, and accessible through the manager
  interface.
* asterisk.conf may be in a path that is not the configuration
  directory. I'm not sure if this special case is handled.
* #include are basically handled, but mostly for reading. IIRC the write
  is back to a single file. No idea about #exec, which will probably
  have odd interactions with UpdateConfig. Configuration templates
  ('[section](template)') are also not handled gracefully.

> 
> After doing all no success :((

This is a report of the the thing that did not happen. Next time you ask
a question, please report what actually does happen ("I got the following
response: ...").

-- 
               Tzafrir Cohen
icq#16849755              jabber:tzafrir.cohen at xorcom.com
+972-50-7952406           mailto:tzafrir.cohen at xorcom.com
http://www.xorcom.com  iax:guest at local.xorcom.com/tzafrir



More information about the asterisk-users mailing list