I'm currently dealing with a little problem that routes back to me simply not having a static IP, as my ISP charges a ridiculous sum for that.
I have a DDNS in place, which works fine. Except, I'm now trying to provide a service under a subdomain.
The current, non-functional, solution is to simply set up a CNAME Record and additionally an SRV Record:
example.example.com IN CNAME example.com
_example._tcp.example.com IN SRV Port 1111 example.example.com
It didn't make much sense to me but some users reported having success this way and other prior solutions didn't work nonetheless. But instead, example.example.com
is a dead end, while example.com
results in example.com:1111
.
I'm completely stumped at this point. All I intend to have is a subdomain directing to my actual IP on port 1111. Many thanks in advance for your help.