# Configure your application

## Step 1 Point your infrastructure to the private edge

To use Twilio Interconnect, customers must use the appropriate [private edges](/docs/global-infrastructure/edge-locations) as seen below.

| **Private Edge ID** | **Location**                                                    |
| ------------------- | --------------------------------------------------------------- |
| ashburn-ix          | US East Coast (Virginia) over Interconnect exchange in Virginia |
| san-jose-ix         | US West Coast (Oregon) over Interconnect exchange in San Jose   |
| sao-paulo-ix        | Sao Paulo over Interconnect exchange in Sao Paulo               |
| london-ix           | Ireland over Interconnect exchange in London                    |
| frankfurt-ix        | Frankfurt over Interconnect exchange in Frankfurt               |
| singapore-ix        | Singapore over Interconnect exchange in Singapore               |
| tokyo-ix            | Tokyo over Interconnect exchange in Tokyo                       |
| sydney-ix           | Sydney over Interconnect exchange in Sydney                     |

Point your communication infrastructure to the localized URIs (excludes webhooks and client).

**Example**

```bash
1 | https://api.ashburn-ix.us1.twilio.com/2020-04-01
```

For webhooks and client, set the edge to the specific private edge.

**Example: Webhooks**

```bash
1 | https://example.com/foo?query=123#e=ashburn-ix
```

**Example: JavaScript SDK**

```bash
1 | const device = new Twilio.Device(token, { edge: "ashburn-ix" });
```

**Example: Mobile SDK - Android**

```bash
1 | Voice.setEdge("ashburn-ix");
```

**Example: Mobile SDK - iOS**

```bash
1 | TwilioVoice.edge = "ashburn-ix";
```

## Step 2 Allow Twilio's IP addresses and ports on your Firewall **(Voice only)**

Refer to the link(s) below for the signaling and media IP addresses and ports.

* [Elastic SIP Trunk using Twilio Interconnect](/docs/sip-trunking/configure-with-interconnect#IP-addresses-tnx)
* [SIP Interface using Twilio Interconnect](/docs/voice/api/sip-interconnect#IPwhitelist-tnx)
