Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Mobile SDK Edge Locations


Twilio Voice SDK lets you select the specific Twilio data center used when your Call connects to Twilio. Network communication to and from Twilio will originate/terminate from the fixed, static IP address ranges listed below for each edge location. Refer to these ranges if you need to configure your local network to allow communication or apply Quality of Service routing rules to communication with Twilio.


Edge location information for Programmable Voice SDK

edge-location-information-for-programmable-voice-sdk page anchor

By default, Programmable Voice SDK will use Twilio's Global Low Latency routing capability to determine which data center is closest to your user, establishing a connection through Twilio's nearest point of presence. Global Low Latency uses latency-based DNS lookups to determine the nearest data center. You may want to override this in some cases, especially when your users are working from a fixed location and using a DNS server in another edge.

For a full list of available edges, see Twilio Edges and Private Interconnect Edges

(information)

Info

GLL requires the upstream DNS to support RFC 7871. See GLL requirements for more information

Who will benefit from this?

who-will-benefit-from-this page anchor

Global Low Latency uses latency-based DNS lookups to determine the nearest data center. We introduced setting an edge in Voice SDK because there can be cases where the DNS address used by the App using Programmable Voice SDK may not represent their correct edge. For example, if you are using a device in UK and the VPN server it is connected to is based in USA. If we relied on latency-based DNS lookups, the edge Twilio will choose is going to be "ashburn" where "dublin" would have been preferred. Setting edge on the caller side will guarantee the least latency in this scenario.

Force connections through Twilio Ireland:

Android

android page anchor

_10
Voice.setEdge("dublin");


_10
TwilioVoice.edge = "dublin";

Force connections through Twilio US East Coast edge over your private Interconnect connection to that edge:


_10
Voice.setEdge("ashburn-ix");


_10
TwilioVoice.edge = "ashburn-ix";

Let Twilio choose the nearest edge, skip setting the edge.


Rate this page: