1

I have made A record for the domain mydomain.com and for sipservice.mydomain.com. I also made an SRV record. By checking the record with the command:

host -t srv _sip._tcp.mydomain.com

I get this result:

_sip._tcp.mydomain.com has SRV record 0 5 8080 sipservice.mydomain.com.

But when I try to navigate the domain in the browser without specifying the port to the site, the transition does not work.

What am I doing wrong? Or does it take some time to work?

1 Answers1

2

Creating the correct SRV record is only one part of the equation, to use one effectively you also need a client that utilises / supports them for a given service.

navigate the domain in the browser without specifying the port

Webbrowsers generally do not support SRV records for connecting to a web server running on another port than 80 (for plain HTTP) or 443 (for HTTPS).


Also, talking about SIP, if I recall correctly, SIP uses UDP and not TCP and you would normally set up an _sip._udp.example.com. SRV-record.

Rob
  • 1,263
  • 3
  • 8