![]() |
DNS problem with Tidal - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: DNS problem with Tidal (/showthread.php?tid=854) |
DNS problem with Tidal - nikigo - 01-02-2019 I have version 4.4 (in place update), on wired lan. When I try to play Tidal songs from BubbleUPnP, I get MPD error Failed to decode http://192.168.100.20:49149/tidal/track?version=1&trackId=1550546; CURL failed: Failed to connect to 192.168.100.20 port 49149: Connection refused Before the update I had this error MPD error Failed to decode http://192.168.100.20:49149/tidal/track?version=1&trackId=1550546; CURL failed: Could not resolve host: ab-pr-ak.audio.tidal.com I tried pinging from ssh but I got Code: pi@moode:~ $ ping ab-pr-ak.audio.tidal.com The windows computer on my network pings tidal fine. Also Code: pi@moode:~ $ dig @62.162.32.165 ab-pr-ak.audio.tidal.com where 62.162.32.165 is the DNS server from my internet provider and Code: pi@moode:~ $ cat /etc/resolv.conf Tidal username and password are ok and I tried rebooting the rooter. Can anyone help? RE: DNS problem with Tidal - Tim Curtis - 01-02-2019 The symptom "ping: ab-pr-ak.audio.tidal.com: Name or service not known" suggests some sort of local network issue. No issues resolving the host on my end. Code: pi@rp3:~ $ ping ab-pr-ak.audio.tidal.com RE: DNS problem with Tidal - TheOldPresbyope - 01-02-2019 @nikigo Let's stay focused on what you have now Code: I have version 4.4 (in place update), on wired lan. When I try to play Tidal songs That means MPD couldn't get a response on port 49149 from upmpdcli on your moOde player (which I assume is at 192.168.100.20). Here's the ports being listened to by upmpdcli on my player as I play a Tidal track: Code: pi@moode:~ $ sudo netstat -tulpn|grep upmpdcli Is upmpdcli running on your player? Regards, Kent RE: DNS problem with Tidal - nikigo - 01-02-2019 (01-02-2019, 05:29 PM)TheOldPresbyope Wrote: @nikigo Sorry, later on I realized I still have the "Could not resolve host: ab-pr-ak.audio.tidal.com" error, as well. Quick update of what I realized. I removed resolvconf and entered this Code: sudo ln -sf /run/resolvconf/resolv.conf /etc/resolv.conf I was able to play a track from Tidal and I was able to ping. However a reboot overwrites the resolv.conf and then nameserver is back to the router ip and it's not working anymore. It resolves other addresses but not tidal. It works only if the router ip is removed as a nameserver. Other computers and android devices ping the tidal address so I guess the router dns is fine. Something with my network settings on raspbian is broken. Noob here so I would need more help in what other info you need, so you can help me. Here is what ports are listened while I was able to play a tidal Code: pi@moode:~ $ pi@moode:~ $ sudo netstat -tulpn|grep upmpdcli RE: DNS problem with Tidal - TheOldPresbyope - 01-02-2019 I'm on the way out the door so only two quick comments. 1) moOde picks up the DNS server address from your router as part of the DHCP process. It's very common for the router (192.168.100.1, in your case) to run a local DNS server. It should be passing the (unknown to it) Tidal server name up the chain to your ISP's DNS. Offhand, I don't have an explanation to offer why this isn't working. You could try working around your problem by choosing STATIC IP, which allows you to set primary and secondary DNS addresses. 2) Testing with android devices doesn't count. Google's DNS service is hardcoded into them. Regards, Kent RE: DNS problem with Tidal - nikigo - 01-03-2019 (01-02-2019, 07:09 PM)TheOldPresbyope Wrote: You could try working around your problem by choosing STATIC IP, which allows you to set primary and secondary DNS addresses. Does not work with my internet provider's dns, only with 8.8.8.8 as secondary dns. This works for now. Thanks Kent. |