Soporte & Consultoria

Soporte Remoto y Consultoria skype : ambiorixg12.
Nota no se brinda ningun tipo de consulta o soporte fuera del blog de forma gratuita

lunes, 5 de octubre de 2015

Asterisk WebRTC Support Notes

Saltar al final de los metadatos
Ir al inicio de los metadatos
Icon
If you would like to test Asterisk with WebRTC you can now use the latest shipping Chrome. Audio should work great, but Asterisk 11 does not support the VP8 video codec used by Chrome at the time of this writing.
Passthrough support for the video codec VP8 (and Opus for audio) was added in Asterisk 12.

Background

WebRTC/rtcweb is an effort to bring a defined API to JavaScript developers that allows them to venture into the world of real time communications. This may be a click-to-call system or a "softphone" with both delivered as a webpage. No plug-ins are required and as this is a defined specification it can be used across different browsers where supported.
Asterisk has had support for WebRTC since version 11. A res_http_websocket module has been created which allows the JavaScript developers to interact and communicate with Asterisk. Support for WebSocket as a transport has been added to chan_sip to allow SIP to be used as the signaling protocol. ICESTUN, and TURN support has been added to res_rtp_asterisk to allow clients behind NAT to better communicate with Asterisk. SRTP support was added in a previous version but it is also a requirement of WebRTC.

Browser Support

The latest information about browser support is available at http://en.wikipedia.org/wiki/WebRTC

SRTP

Secure media is a requirement of WebRTC and as a result SRTP must be available. In order for Asterisk to build SRTP support the libsrtp library and development headers must be available. This can be installed using the distribution's package management system or from source. Failure to do this will result in the media offers being rejected.

pjproject

Asterisk 11 comes with an embedded pjproject. When building Asterisk 11, to get ICE support you'll need the UUID development library (uuid-dev for Debian, libuuid-devel for CentOS) library. If you don't have ICE support, then you'll likely run into audio issues in several scenarios, specifically when attempting to traverse NAT, as WebRTC uses ICE,STUN,TURN to do this.
Starting with Asterisk 12 you need to have pjproject libraries installed, otherwise you most likely won't have audio in your WebRTC calls and no warning whatsoever!
See here for instructions on getting it installed: Building and Installing pjproject
Additionally on CentOS you may need to do "export LD_LIBRARY_PATH=/usr/lib". The alternative is passing  the correct flags (usually --with-libdir) to all dependencies to install the libraries in /usr/lib64 instead of /usr/lib. You could possibily also play with the /etc/ld.so.conf.d configuration to achieve the same effect. 

Configuring res_http_websocket

The built-in Asterisk HTTP server is used to provide the WebSocket support. This can be enabled using the following in the general section of the http.conf configuration file.
enabled=yes
If you would like to change the port from the default value of 8088 this can also be done in the general section.
bindport=8088
The res_http_websocket must also be built and loaded by Asterisk. For most individuals this is done by default.
Icon
Ensure that res_http_websocket.so is selected in menuselect prior to building Asterisk. Also ensure that res_http_websocket.so is loaded prior to chan_sip.so if you are not using autoload in modules.conf
The secure calling tutorial viewable at https://wiki.asterisk.org/wiki/display/AST/Secure+Calling+Tutorial can be used as a basis to configure the built-in HTTP server with HTTPS (and secure WebSocket) support.

Configuring chan_sip

All configuration occurs in sip.conf, or a configuration file included by it.
To allow a peer, user, or friend access using the WebSocket transport it must be added to their transport options like the following.
transport=ws,wss
To restrict access to clients using only an HTTPS connection allow the 'wss' transport only.
The WebRTC standard has selected AVPF as the audio video profile to use for media streams. This is not the default profile in use by chan_sip. As a result the following must be added to the peer, user, or friend.
avpf=yes
This will cause AVPF and SAVPF to be used and the media streams to be accepted.
Icon
Asterisk 11.0.0-beta1 has an issue in it where registering over WebSocket may not work properly. The work around is to use a newer version of Asterisk that has been released, or check out the Asterisk 11 branch from SVN. You can also set
nat=yes,force_rport
on the peer, user, or friend to work around the issue.
The issue report for this problem is viewable at https://issues.asterisk.org/jira/browse/ASTERISK-20238
As media encryption is a requirement of rtcweb the following must be added to the peer, user, or friend to enable it.
encryption=yes

Using WebSocket

The res_http_websocket module provides WebSocket at the /ws sub-directory only. This is an implementation specific detail. Some JavaScript libraries may need to be changed slightly to explicitly use the sub-directory. Symptoms of using the incorrect URL are a 404 Not Found response from the Asterisk HTTP server.

JavaScript Libraries

1. JsSIP - Provides a WebRTC compatible JavaScript SIP library, demo is available here for download.
2. sipml5 - Provides a WebRTC compatible JavaScript SIP library.

Issues

All SIP responses are sent from Asterisk to the client.

HTTP Response: 404 Not Found

The JavaScript library is using an incorrect URL for WebSocket access. The URL must use the /ws sub-directory.

SIP Response: 400 Bad Request received over SIP when registering using WebSocket

The version of chan_sip in use has a bug when registering. Update to a newer version.

SIP Response: 488 Not acceptable here received over SIP when placing a call to Asterisk

You have not enabled AVPF support in the peer, user, or friend entry using "avpf=yes" or have not allowed a codec that is supported by the caller.
  • Sin etiquetas

7 Comentarios

No hay comentarios:

Publicar un comentario