3

Can anyone please tell me the correct syntax of SRV data in Google Cloud DNS dashboard.

Salman Sheikh
  • 81
  • 3
  • 4

2 Answers2

3

Full name on domain like:

_sipinternaltls._tcp."domain name that is fixed"

Example:

_sipinternaltls._tcp.domain.com

Resource Record : SRV
TTL : As shown on guide of installation
TTL Unit : choose s,m,h,d,w
SRV Data : Priority Weight Port SIP

Example:

0 0 5061 sip.domain.com.

must finish with .

Tobi Nary
  • 4,566
  • 4
  • 30
  • 50
1

The syntax of SRV data should be priority weight port target, http://en.wikipedia.org/wiki/SRV_record. An example could be "10 20 5060 foo.bar." (Quotes are only used to call attention to the SRV data).

  • An example of the SRV record on Cloud DNS [here](https://cloud.google.com/dns/what-is-cloud-dns) – Layo Mar 01 '15 at 06:06