A SIP over WebSocket - SIP gateway for the AVM Fritz!Box based on Kamailio and rtpengine.
This gateway allows any SIP user of your Fritz!Box to perform calls with SIP over WebSocket, which is unsupported by the Fritz!Box.
Please note that this very likely will also work for other SIP servers, however, we develop for and test with AVM Fritz!Box only.
To connect to the SIP over WebSocket from mobile clients like Android & iOS, it is required that you use TLS. webrtc-sip-gw will enable its internal TLS by default and therefore requires a certificate, but you can disable the internal TLS if you want to use a proxy like nginx instead.
The Docker container will automatically configure IP address and hostname/domain name for the webrtc-sip-gw,
however, in some cases (e.g. with multiple NICs) this autoconfiguration may pick the "wrong" settings.
Set the MY_IP
and MY_DOMAIN
environment variables in the environment
section of the docker-compose file to override the autoconfigured values.
Unless internal TLS is not explicitly disabled, TLS certificate and private key are required at these (container internal) paths:
- certificate:
/etc/ssl/kamailio/fullchain.pem
- private key:
/etc/ssl/kamailio/privkey.pem
The provided docker-compose.yml
file mounts the local ssl
directory properly into the container.
Instead of using the internal TLS and therefore needing to provide a certificate, you can use an existing nginx reverse proxy.
Add this location
block to a valid server
configuration:
location /sip {
proxy_pass http://FILL_YOUR_IP:8080; # Adjust to your webrtc-sip-gw Docker host's IP
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
SIP over WebSocket is exposed on TCP ports 8080 (unsecured) and, if internal TLS is enabled, 8443 (secured).
Additionally, UDP ports 23400 to 23500 are exposed by rtpengine.
You can overwrite the WebSocker ports by setting the WS_PORT
and WSS_PORT
environment variables in the docker-compose.yml
file.
If you use any firewall on the Docker host, the above ports need to be open! For ufw, you can open these ports using the following command:
ufw allow in from any to any port 8080 proto tcp comment "webrtc-sip-gw WebSocket transport"
ufw allow in from any to any port 8443 proto tcp comment "webrtc-sip-gw WebSocket Secure transport"
ufw allow in from any to any port 23400:23500 proto udp comment "webrtc-sip-gw UDP transport"
webrtc-sip-gw is built for Linux on amd64
and arm64
, so it should run on most modern Linux machines, including Raspberry Pis.
amd64
has been tested in production on a x86_64 Debian 12 host, arm64
has been validated to start on QEMU emulation.
Create a new directory on your Docker host and place the docker-compose.yml there.
If you want to disable the internal TLS, set the value of the TLS_DISABLE
environment variable in the docker-compose.yml
file to true
:
Unless you have not explicitly disabled TLS:
cd
into the new directory.- Create a
ssl
folder.
By default, webrtc-sip-gw is automatically using the hostname of your Docker host and the IP address of an interface.
In case you need to use a different hostname or IP address than the autoconfigured one,
e.g. because you have multiple interfaces and webrtc-sip-gw selected the wrong one, you can overwrite the automatically set values.
Set the MY_IP
environment variable to overwrite the IP address, and set the MY_DOMAIN
environment variable to overwrite the hostname.
The certificate should be placed in the ssl
directory and named sipgw.crt
.
The private key should also be placed on the ssl
directory and named sipgw.key
.
The certificate needs to be installed and trusted on your clients.
You can either use a certificate from a (public or private) CA or generate your own self-signed certificate.
OpenSSL is packaged for most Linux distributions, installing it should be as simple as:
sudo apt install openssl
OpenSSL can be told to generate a 2048 bit long RSA key and a certificate that is valid for 825 days, but there are some important requirements:
- You have any hostname for the CN (common name) of the certificate. Enter this hostname when OpenSSL asks for
Common Name (e.g. server FQDN or YOUR name) []:
. It is not required that the server can be reached under this hostname, but the certificate must have a hostname as CN. - Replace
<IP-ADDRESS>
with your server's IP address. - Replace
<ADDITIONAL-HOSTNAME>
with another hostname the certificate should be valid for, or delete,DNS:<ADDITIONAL-HOSTNAME>
.
openssl req -x509 -nodes -days 825 -newkey rsa:2048 -addext 'subjectAltName=IP:<IP-ADDRESS>,DNS:<ADDITIONAL-HOSTNAME>' -addext 'keyUsage = digitalSignature,keyEncipherment' -addext 'extendedKeyUsage = serverAuth' -keyout ./ssl/privkey.pem -out ./ssl/fullchain.pem
This certificate follows the Requirements for trusted certificates in iOS 13 and macOS 10.15. Key usage and extended key usage are set as defined in RFC5280.
You will be prompted for some information which you will need to fill out for the certificate, please remember to fill in a hostname when it asks for Common Name.
Execute the following:
sudo docker-compose up -d
The following error messages can be ignored during startup:
ERROR: rtpengine [rtpengine.c:2887]: send_rtpp_command(): can’t send command „ping“ to RTPEngine <udp:127.0.0.1:22222>
ERROR: rtpengine [rtpengine.c:2788]: rtpp_test(): proxy did not respond to ping
Copy the fullchain.pem
certificate file to your clients and open the file.
On Android and Windows, a popup with a certificate installation wizard should open up.
On iOS/iPadOS, a popup that tells you to visit the settings should open up. Visit the settings as told and proceed.
Using the oh-sipclient
component or widget, use the following configuration:
websocketUrl
:wss://YOUR-DOCKER-HOST:8443
domain
: the domain of your SIP server, e.g.fritz.box
username
: any valid SIP user in your Fritz!Boxpassword
: password of your valid SIP user
Thanks to @havfo for sharing the configuration files on havfo/WEBRTC-to-SIP. Huge thanks to @nanosonde for initially creating this project.