Here's my situation:
I have a linux server from Scaleway hosting a SHOUTcast service, on the ip 1.2.3.4
, port 8000
Recently I also rented a domain myserv.com
so I can redirect the server to.
I changed the Nameserver to the ones provided by https://dns.he.net and started making records.
Got an A record to point my domain to the IP address, and it's working fine.
I can access my server by opening myserv.com:8000
, but I'd like to access the SHOUTcast service with a subdomain, rather than adding the port. Let's say if I open sc.myserv.com
it'll access 1.2.3.4:8000
I did some search and fount out I'd need to use SRV records, but I guess I didn't configure mine right cause it's not working. What am I doing wrong?
myserv.com. 86400 IN A 1.2.3.4
_shoutcast._tcp.sc.myserv.com. 86400 IN SRV 0 5 8000 myserv.com.
Thank you in advance