Nodejs 實現ESL內聯FreeSWITCH設定說明

來源:互聯網
上載者:User

標籤:des   style   http   io   color   ar   os   sp   檔案   

一、背景說明:

  SIP Server IP (Centos):192.168.11.61  ,伺服器IP(Windows):192.168.11.19

二、目的:

  能夠從192.168.11.19上通過Nodejs的modesl 內聯訪問到SIP Server(FreeSWITCH),從而實現對SIP Server狀態資訊的擷取。之前有看過很多文檔,SIP Server 與 內聯程式 都是在一台電腦上,本文提供兩者分離的一種實現方式,供大家參考。

三、具體設定:

  ①在conf/autoload_configs/event_socket.conf.xml 中,修改listen-ip 為:192.168.11.61,預設為:127.0.0.1,設定後的參數如下:

  <configuration name="event_socket.conf" description="Socket Client">
    <settings>
      <param name="nat-map" value="false"/>
      <param name="listen-ip" value="192.168.11.61"/>
      <param name="listen-port" value="8021"/>
      <param name="password" value="ClueCon"/>
      <!-- <param name="apply-inbound-acl" value="lan"/> -->
    </settings>
  </configuration>

  ②安裝nodejs(具體安裝不在本文介紹中),下載modesl (https://www.npmjs.org/package/modesl)

  ③ESL.js 內聯代碼編寫:

  var esl = require(‘D:\\testChat\\modesl‘),
  conn = new esl.Connection(‘192.168.11.61‘, 8021, ‘ClueCon‘, function() {
    conn.api(‘vension‘, function(res) {
      //res is an esl.Event instance
      console.log(res.getBody());
    });
  });

  將modesl 與 ESL.js都放D:\\testChat目錄下,啟動doc進入D:\\testCha 檔案夾,輸入node ESL.js 即可看到FS版本資訊,更換其它指令,就可以實現方便的操作。

  基於該基礎之上,可以將FreeSWITCH的資訊通過 http 模組傳遞給web介面,也可以將這些資訊儲存到DB,分析... 接下來你就可以嘗試其它的應用了。

Nodejs 實現ESL內聯FreeSWITCH設定說明

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.