-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new miniconf (trait split) #767
Conversation
Co-authored-by: Ryan Summers <[email protected]>
Reposting some of my information here. The HITL appears to be failing because the QUARTIQ office network has two addresses assigned to the
The 10.34.17.1 address is provided first in the list, and pinging this address is successful, but it does not appear that there is an MQTT broker running on this machine. As such, the HITL is failing because Stabilizer is getting a bad IP address from DNS. Once we fix the DNS configuration, I believe HITL should succeed. |
Presumably Smoltcp should prefer the shortest route which is the .16.1 in this case. But I'll fix it for this case. Also we should also investigate srv record support and then use that as default. |
I'm not sure how it would detect the "shortest" path route. Technically, smoltcp will give you all of the routes, we just have it configured to only provide the first. I also have the NAL set up to only handle a single (first) result. How would you propose software identifies the "shortest" route. Would this be the "smallest" subnet that could be made between the device and the domain name?
Hmm, I don't think the embedded-nal traits support providing a fully-qualified IP+port address back from the query currently, so this would require a NAL update as well. |
All of the routes?
on-link IP addresses should be preferred to those that need to go via the gateway.
Yes. It's a further usability improvement step that came to mind. Independent of this issue. |
No description provided.