DNS SRV
is there anyone that can explain me, step by step, how configure SRV record on the DNS Linode configuration?
Thank you
6 Replies
@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
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
Regards