cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1094
Views
0
Helpful
3
Replies

Webex Registration Domain

hs08
VIP
VIP

I was successfull make trunk from webex to local gateway. 

In the webex i can see Registrar domain and outbound proxy address, then if i lookup manually both address is not resolved.

So how actually my local gateway can connect to the webex using registrar domain provided by webex and registration was successfull even the address can't be resolved?

3 Replies 3

hs08
VIP
VIP

Actually i tested using mxtoolbox to query the SRV record and not found.

hs08_0-1752810510744.png

 

That's not how SRV records are formatted. A little research will help but specific to SIP, the service can be "_sip" or "_sips"; the latter is supposed to be indicate TLS security.

The example below returns two DNS A records:

dig -t srv _sips._tcp.ch06.sipconnect-us.bcld.webex.com

; <<>> DiG 9.10.6 <<>> -t srv _sips._tcp.ch06.sipconnect-us.bcld.webex.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 11793
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;_sips._tcp.ch06.sipconnect-us.bcld.webex.com. IN SRV

;; ANSWER SECTION:
_sips._tcp.ch06.sipconnect-us.bcld.webex.com. 300 IN SRV 10 50 8934 sse-b6.public.wdfwwxc-p-2.prod.infra.webex.com.
_sips._tcp.ch06.sipconnect-us.bcld.webex.com. 300 IN SRV 5 50 8934 sse-b5.public.wjfkwxc-p-2.prod.infra.webex.com.

;; Query time: 37 msec
;; SERVER: [REDACTED]
;; WHEN: Fri Jul 18 10:15:30 EDT 2025
;; MSG SIZE  rcvd: 205

 

Jonathan Schulenberg
Hall of Fame
Hall of Fame

SIP is designed to use DNS SRV records to find the A record(s) with the priority, weight, and listen port of each A record.

Fun fact: The destination-pattern dns: command is designed to query for an SRV record. You’re supposed to suffix the listen port if you want CUBE to query for an A record directly.

session-target dns:server.domain.tld looks for SRV first and falls back to A if that fails.

session-target dns:server.domain.tld:5060 looks for an A record.