// Study CardsReference Material
Webex Calling: Local Gateway
Study cards covering the Webex Calling Local Gateway (LGW) architecture — trunk types, capacity planning, Cisco IOS XE configuration patterns, TDM and UCM integration, E911, and the SIP registration flow. Built from Cisco official documentation for reference material.
What is it?
Webex Calling Local Gateway (LGW)
Prerequisites
- VoIP knowledge — SIP, media protocols, basic troubleshooting
- SBC familiarity — device platform being configured as LGW
- Required licenses — to operate the SBC platform
- On-prem UCM or PBX — if integrating with an existing environment
Choose your model
Registration-Based vs. Certificate-Based
Simple, fast to set up
- Max 250 concurrent calls per trunk
- Cisco CUBE only
- Auth via digest: username + password
- Works with dynamic NAT
- No public DNS record needed
- Supports automated troubleshooting via Control Hub connector
- Min IOS XE: 17.6.1a (17.12.2+ recommended)
Scale + third-party SBCs
- Supports 250+ concurrent calls
- CUBE + Oracle, AudioCodes, Ribbon, anynode, Italtel
- Auth via mutual TLS: LGW FQDN verified
- Requires public IP or static NAT
- Requires domain claim + DNS A or SRV record
- Only option for Webex for Government (FedRAMP)
- Min IOS XE: 17.9.1a
Capacity tiers
Calling Capacity & Connectivity
Connection quality thresholds
Trunk status — Control Hub
When to use this
TDM / ISDN PSTN Trunk
Translation rule logic
Webex direction (A1A tag)
voice translation-rule 200
rule 1 /^/ /A1A/
voice translation-rule 11
rule 1 /^A1A/ //PSTN direction (A2A tag)
voice translation-rule 100
rule 1 /^\+/ /A2A/
voice translation-rule 12
rule 1 /^A2A44/ /0/PRI interface example
card type e1 0 2
isdn switch-type primary-net5
controller E1 0/2/0
pri-group timeslots 1-31Architecture
Integrating Cisco Unified CM (UCM)
Port assignment
Local DNS SRV records (IOS XE)
A records for UCM nodes
ip host ucmpub.mydomain.com 192.168.80.60
SRV — priority weight port host
ip host _sip._udp.wxtocucm.io srv 0 1 5065 ucmpub.mydomain.com
ip host _sip._udp.pstntocucm.io srv 0 1 5060 ucmpub.mydomain.comRouting summary
Webex inbound (DP100) routes to DPG300 (UCM-Webex trunk). PSTN inbound (DP200) routes to DPG400 (UCM-PSTN trunk). UCM-Webex (DP300) routes back to DPG100. UCM-PSTN (DP400) routes to DPG200.
Purpose
Geo-Location Header Pass-Through
Configuration options
Global (all headers)
voice service voip
sip
pass-thru headers unsuppSpecific headers (voice class)
voice class sip-hdr-passthrulist 200
passthru-hdr Geolocation-Routing
passthru-hdr Geolocation
passthru-hdr-unsuppApply to dial-peers (inbound and outbound)
dial-peer voice 100 voip
voice-class sip pass-thru headers 200
For PIDF-LO body pass-through
voice service voip
sip
pass-thru content unsuppWhat happens after config is pushed
Registration Flow (Registration-Based Trunk)
TLS Connection Initiated
CUBE initiates a TLS connection toward the Webex Calling access SBC
Certificate Presented and Validated
Access SBC presents its certificate. CUBE validates it against the Cisco root CA bundle (IdenTrust Commercial Root CA1) imported to the gateway.
Persistent TLS Session Established
Secure session established and reused for both registration and call processing via connection-reuse
SIP REGISTER Sent
CUBE sends a SIP REGISTER to the access SBC using the registrar configured in voice class tenant
401 Challenge Received
Access SBC responds with 401 Unauthorized. CUBE replies using credentials from the tenant: username, password, realm
SIP Profile Rules Applied
sip-profiles 100 converts SIPS URLs back to SIP in response headers as required by Webex proxies
200 OK Received — Registration Complete
Access SBC sends 200 OK. Control Hub trunk status updates to Online
// Download Individual Cards