Reputation: 638
I am broadcasting a new mqtt-service via mDNS. My Flutter app is notified that a new service was registered but I am problems with the name-resolution of the address called MyMqttService.mqtt.local
Name resolution is working fine on MacOS and iOS devices, but Windows is not able to convert the .local adress.
I have already installed Bonjour Printer Services from Apple, using dns-sd and so on. But nothing helped me to get Windows 11 to resolve the .local adresses via ping.
Windows firewall is also deactived, so that should not be a reason.
Upvotes: 1
Views: 3751
Reputation: 1
From what I have found you can't use double dot in .local mdns names. In your case it is .mqtt.local and it will not work. Try to remove mqtt part from the hostname :)
Upvotes: 0