Deploy self-hosted VoIP services for hybrid users
Traditional VPN solutions create several problems for VoIP deployments, primarily due to their inefficiencies in handling real-time traffic protocols such as SIP ↗ and RTP ↗. Legacy VPN deployments introduce high latency and jitter, which negatively impact voice call quality. Additionally, they often struggle with NAT ↗ traversal, leading to connection issues for VoIP calls.
Cloudflare improves over traditional VPN solutions by leveraging its global network ↗ of data centers in over 300 cities to significantly reduce latency for remote users. When using our device agent, remote users are automatically connected to the nearest Cloudflare data center, thus reducing latency.
This document explains how to architect access to a self-hosted VoIP service using Cloudflare. Note the solution below uses our WARP Connector, a small piece of software deployed on a server in the same subnet as the VoIP servers and creates bi-directional traffic flow through Cloudflare to users.
The diagram above shows the WARP Connector and our device agent deployed to establish highly performant, reliable connectivity for private VoIP services. Note that Cloudflare will assign remote users an address from the CGNAT range, which is used for the private network created between device agents. The WARP Connector ensures secure, bidirectional communication between remote users and the on-premise SIP server, without exposing the server to the public Internet. This shields the VoIP infrastructure from potential attacks while maintaining a seamless, encrypted connection for real-time communications.
- VoIP server resides on a private network with no public IP.
- WARP Connector creates a secure tunnel to Cloudflare and is configured as a virtual router in the private network.
- Allow traffic from Cloudflare to reach the VoIP server, but also allow private network initiated traffic, such as an outbound VoIP call from the server, to route over the Cloudflare tunnel. In the above diagram, we add a static route on the default gateway of
100.96.0.0/12
(the WARP CGNAT range) via10.0.50.10
(the WARP Connector virtual router). - Traffic passes through our Secure Web Gateway (SWG), which applies network level firewall rules to both inbound and outbound traffic.
- A device agent is installed on remote user devices. The agent establishes a secure tunnel to Cloudflare, which allows VoIP software to both receive and make calls.
VoIP software running on the remote user’s device registers with the VoIP server using SIP. The Cloudflare device agent will be assigned an address from the CGNAT IP range, 100.96.0.0/12
. As routing has been established to Cloudflare for 100.96.0.0/12
and to the on-premise network of 10.0.50.0/24
, call flows will work as normal – both direct and indirect media are supported.
When calls are made from user to user, some traffic flows from user devices through Cloudflare to the on-premise server, while other traffic flows through Cloudflare directly to the other user. Note that the device agent is creating a secure tunnel through which the CGNAT addresses are routed. Both users in this flow have registered their SIP clients with the server.
The above diagram shows the high level signaling and media paths.
- Alice registers directly with the SIP server (
10.0.50.60
) with a Cloudflare assigned CGNAT IP of100.96.0.12
. - Bob also registers directly with the SIP server (
10.0.50.60
) with their CGNAT IP of100.96.0.13
. - When Alice calls Bob, the SIP server will send a SIP INVITE message to Bob at
100.96.0.13
. - The default gateway for the SIP server is
10.50.0.1
, but we have defined a static route such that for destination100.96.0.0/12
, the next hop is the WARP Connector interface (10.0.50.10
). - The SIP INVITE message will be routed across the WARP Connector to the Cloudflare network and then received by Bob.
- Bob accepts and the SIP server will send SIP/SDP messages to both Alice and Bob specifying which parameters to use for the RTP (audio) data.
- For Direct Media paths where the SIP server is not in the audio path and the RTP streams are directly between Alice and Bob, ensure that WARP-to-WARP connectivity has been enabled in Cloudflare. Audio streams in the Direct Media use case will not need to route over the WARP Connector.
Calls between remote and on-premise users are very similar, but RTP audio will be sent over the WARP Connector in addition to the SIP signaling.
The high-level signaling and media paths are shown below:
- Alice registers directly with the SIP server (
10.0.50.60
) with her CGNAT IP of100.96.0.12
. - Bob also registers directly with the SIP server (
10.0.50.60
) with their LAN IP of10.0.50.101
. - When Alice calls Bob, the SIP server will send a SIP INVITE message to Bob at
10.0.50.101
. - The default gateway for the SIP server is
10.50.0.1
, but we have defined a static route such that for destination100.96.0.0/12
, the next hop is the WARP Connector interface (10.0.50.10
). - The SIP INVITE message will be sent on the local network to Bob.
- Bob accepts and the SIP server will send SIP/SDP messages to both Alice and Bob specifying which parameters to use for the RTP (audio) data.
- Bob will send audio to Alice at
100.96.0.12
, which will be routed across the WARP Connector to Cloudflare, and Alice will send audio to Bob at10.0.50.101
, which will be sent from Cloudflare across the WARP Connector to the on-premise local network.
With Cloudflare’s WARP Connector, remote users communicating with other remote users or on-premise users via on-premise SIP servers will have a seamless and secure experience for both ends. Key benefits include:
-
Bidirectional connectivity: WARP Connector supports bidirectional traffic, which is crucial for remote users communicating with on-premise users. Both signaling and media traffic (SIP/RTP) flow securely between the two, regardless of where the user is physically located. This is done via Cloudflare’s global network, using an encrypted tunnel, ensuring data integrity and encryption.
-
Private communication over CGNAT: The WARP Connector assigns Carrier-Grade NAT (CGNAT) IPs to devices, which allows remote users to securely communicate with on-premise users over private networks. This ensures that communication remains isolated from the public Internet, enhancing security. The CGNAT functionality means that remote and on-premise users can communicate as though they are on the same network.
-
No NAT traversal issues: NAT traversal often poses a challenge in VoIP scenarios, but because WARP Connector preserves source IP addresses and handles bidirectional traffic without additional NAT boundaries, remote and on-premise users can communicate without issues typically caused by firewalls or NAT devices, improving the overall call setup and quality.