Skip to main content
Telnyx SIP connections automatically retry failed call attempts through different routes and IP addresses.

Signaling IP addresses

Telnyx uses two geographically redundant signaling IPs per region:
RegionPrimary (IP1)Secondary (IP2)
US192.76.120.1064.16.250.10
EU5.172.39.105.172.39.25
Canada193.108.220.10193.108.220.25
Australia103.135.104.10103.135.104.25

Failover behavior

Single route

  1. SIP INVITE sent from IP1
  2. On failure, retry from IP2

Multiple routes

  1. Attempt all routes via IP1 in configured order
  2. On failure, retry all routes via IP2
Route order depends on configured preference (Sequential or Round Robin).

Credential authentication

Calls route through the registered KSS instance with three levels of internal failover.

Call forward on failure

When enabled, calls that fail on all SIP routes forward to PSTN (up to 10 termination carriers).

Response codes

Triggers failover:
CodeMeaning
408Request Timeout
480Temporarily Unavailable
503Service Unavailable
504Server Timeout
Transport errorNetwork/TCP failure
Does NOT trigger failover (call considered connected):
CodeMeaning
180Ringing
200OK (answered)
404Not Found
486Busy Here
603Decline

DNS configuration

SRV records (recommended):
_sip._udp.example.com. 3600 IN SRV 10 10 5060 sip.telnyx.com.
Regional domains: sip.telnyx.com (US), sip-eu.telnyx.com (EU) SRV records automatically resolve to both IP1 and IP2. A records (alternative): Configure separate A records for each signaling IP and add both as routes.

Configuration

PATCH /v2/ip_connections/:
{
  "default_routing_method": "sequential",
  "call_forwarding": {
    "forwarding_type": "on_failure"
  }
}