DNS SRV

Hi,

is there anyone that can explain me, step by step, how configure SRV record on the DNS Linode configuration?

Thank you

6 Replies

What are you trying to do?

@jed:

What are you trying to do?

I have a asterisk PBX on Linode and I'd like to configure a dns srv like

sip.mydomain.com

Thank you

Regards

You will want something like:

Service: _sip

Protocol: udp

Target: sip.mydomain.com

Priority: 10

Weight: 5

Port: 5060

TTL: Default

You can then verify with:

$ dig _sip._udp.example.com srv +short
...
_sip._udp.example.com.    86400   IN  SRV 10 5 5060 sip.mydomain.com.
...

@hoopycat:

You will want something like:

Service: _sip

Protocol: udp

Target: sip.mydomain.com

Priority: 10

Weight: 5

Port: 5060

TTL: Default

You can then verify with:

$ dig _sip._udp.example.com srv +short
...
_sip._udp.example.com.    86400   IN  SRV 10 5 5060 sip.mydomain.com.
...

Thank you for the answer. I have to put also a A record like sip. example.com?

Regards

Yes. Like MX records, SRV records are pointed at names, and the names must have A records.

Thank you very much hoopycat.

Regards

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct