A Session Border Controller
That is painless and easy to use

Cloudonix operates as a Black-box SBC experience, providing Cloudonix customers with a higher level of security and control while not exposing them to the various “technical mumbo-jumbo” that is normally associated with SBC solutions.

Automatic Transcoding

Cloudonix automatically transcodes between all standard codecs - no need to configure.

Simple Secured Passwords

Subscribers use auto-generated passwords that are secure but easy to read.

Ephemeral Tokens

Implementing Cloudonix's RegFree dialing protocol ensures no passwords are required.

Multi Tenant

Multiple domains can be owned by a single customer, representing multiple SBCs.

How can it help me?

a man sitting at a desk with multiple computers
Work From Home
Work From Home can pose a significant security risk to your business phone system. With Cloudonix, remote workers can connect to Cloudonix in a secured manner, maintaining a single secured connectio to the office phone system – ensuring that your office phone system is not exposed to the internet or other malicious actors.
a group of people sitting at computers in a room with large screens
Simplified Call Routing

Businesses that have multiple offices suffer from complex call routing between offices. In most cases, these are subject to highly trained IT consultants to build it and maintain it. With Cloudonix, connecting multiple offices is a breeze, and routing calls between them is performed simply by building the relevant call paths in Cloudonix.

Ultra Elastic SIP Trunking
Easy Connectivity
Connecting your office PBX to multiple carriers, offices, 3rd-party communication systems, and more can be a significant hassle. With Cloudonix, you can greatly simplify the process, while at the same time ensuring that you maintain a simple topology for your offices network.

Not your average SBC solution

sBC Routing - with JavaScript

Routing calls shouldn’t be just about phone numbers or caller IDs – it should also be about business logic. Cloudonix makes that easy, with Cloudonix Container Applications and JavaScript.

				
					const httpClient = require('https');

function queryRoutingSystem(ev) {

    const url = 'httsp://routing.server/inbound';
    const jsonData = JSON.stringify(ev);

    const options = {
        "routing.server", port: 443, "/inbound",
        method: 'POST',
        headers: {
          'Content-Type': 'application/json',
          'Content-Length': Buffer.byteLength(jsonData),
        }
    };
    return httpClient.request(url)
        .then(response => {
            if (!response.ok) {
                throw new Error(`HTTP error! status: ${response.status}`);
            }
            return JSON.parse(response.body);
        })
        .then(data => {
            return data;
        })
        .catch(error => {
            console.error('Failed to fetch time data:', error);
            return null;
        });
}

function preamble() { 
    return '<?xml version="1.0"?>\n'; 
    
}

function response(content) { 
    return `<Response>\n${content}\n</Response>\n`; 
}

exports.handler = function(ev, ctx, callback) {
  try {
    queryRoutingSystem(ev).then(routingResult => {
      const cxmlResponse = "<Dial trunks='" + routingResult.trunk + "'>"+ routingResult.destination + "</Dial>";
      callback(null, preamble() + response(cxmlResponse));
    }).catch(err => {
      callback(err);
    });
  } catch (err) {
    callback(err);
  }
};

				
			
Simple, yet Programmable

Most SBC’s provide a means to control call routing, based on prefixes, IP numbers and data provided via the network and/or the SIP signalling layer. With Cloudonix, a new layer is available, a programmable layer that enables the user to add new logic – such as routing based on customer information, routing based on ticketing information and more. This can be performed using NoCode tools, such as Make™ or using your own application server.

Why
Make-Logo-RGB
?
There are various NoCode platforms available, ranging from commercial offerings like Zaiper™, and RapidAPI™ through Open Source offerings such as n8n™ and red-node™.

When we examined the various platforms available, Make™ provided the fastest result that customres wanted. In fact, we were so impressed by its functionality, that we implemented Cloudonix’s office receptionist, including the first version of our conversational AI, using Make™.

For more information about the Cloudonix Make™ application, click here.

In addition to being available on Make™, the application is available of other Make™ OEM platforms, such as Boost.space.
Make-Logo-RGB
Application for easy call flow development
Cloudonix provides a FREE Make application, enabling NoCode developers to build voice application – directly from the Make platform. Providing full access to all CXML modules and operational REST API modules, the Make application makes building voice applications a breeze.

Q&A

Learn more about Cloudonix’s built SBC capabilities and how they can dramatically improve your communications.

I've seen other SBC products, they are licensed - is Cloudonix licensed as well?
ABSOLUTELY NOT!

Cloudonix’s SBC features are built into the platform and are available to all platform customers – even FREE accounts can enjoy the SBC features.
I have 20 sites to connect, is there a limitation that may affect me?
ABSOLUTELY NOT!

Cloudonix doesn’t apply any limitation on the number of SIP trunks (sites) you can connect to a Cloudonix domain. 20 sites or 200 sites, it’s exactly the same thing. You will charged according to your usage and selected service package.
What codecs do you support? Do I need to configure anything?
Cloudonix uses 2 distinct transcoding zones:
  • subscribers zone
    Used to provide services to Cloudonix directly connected end devices, such as IP phones, soft phones and browsers. The subscribers zone will automatically accept the following codecs: ulaw, alaw, g722, g729, speex, opus, gsmfr.
  • border zone
    Used to provide service to remote carriers or other SIP vendor equipment, such as PBX systems, cloud providers, telephony carriers, etc. The border zone will automatically accept the following codecs: ulaw, alaw, g729.
Cloudonix will automatically transcode between all codecs that pass the platform. Cloudonix users don’t need to do anything to make this work.
I have voice agents with VAPI™ and ReTell™ - can your SBC help me protect them?
ABSOLUTELY NOT!

Passing your inbound/outbound traffic for your agentic voice solutions via Cloudonix can enhance their security and health. For example, you can load balance between agent platform, create transfers between platforms, load split between platforms and more. More importantly, you get full control over your agentic voice traffic – giving them new super powers.