Sip

集成 sipJs 和 freeswitch 很熱門?

  • February 12, 2015

我正在嘗試將 sipjs 與 freeswitch 集成。下面是我正在使用的配置

var config = {
// Replace this IP address with your FreeSWITCH IP address
uri: 'sip:1002@***.***.1.170',

// Replace this IP address with your FreeSWITCH IP address
// and replace the port with your FreeSWITCH port
ws_servers: 'ws://***.***.1.170:5060',

// FreeSWITCH Default Username
authorizationUser: '1002',

// FreeSWITCH Default Password
password: '1234'
};
var userAgent = new SIP.UA(config);

….

session = userAgent.invite('sip:1000@***.***.1.170', options);

但出現以下錯誤:

WebSocket connection to 'ws://***.***.1.170:5060/' failed: Error in connection establishment: net::ERR_TUNNEL_CONNECTION_FAILED

我已經修改了 internal.xml 以允許 Web 套接字連接。有人可以幫我解決這個問題嗎?謝謝。

您需要在 ws 或 wss 埠 7443 的埠 5066 上連接。

引用自:https://serverfault.com/questions/663395