-
Notifications
You must be signed in to change notification settings - Fork 285
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
Error: getaddrinfo ENOTFOUND ff05::2:1001%br-client #2073
Comments
Node.js does not understand link-local addresses (the More precisely: some functions (like Teaching it to deal with link-local addresses may have security implications. Note for example that the WHATWG URL spec explicitly disallows them for security reasons. |
Thx, that's good to know. |
You can't right now. |
@anoymouserver, @bnoordhuis: Actually, you can: You can set a more specific multicast route for the multicast group and interface you want to send it to. Usually this should work:
Also see: https://stackoverflow.com/a/13149495 But if hopglass could add a configuration option to bind the network socket to a specific interface that would be the better solution. As that would allow multiple instances on the same host, too. (which the multicast route option probably will not work with) |
If I send to an udp6 dgram socket on the IPv6 multicast address
ff05::2:1001
(site-local) I get the following error. But sending toff02::2:1001
(link-local) works without any problems.Do you have any idea what causes the error and how it could be resolved?
Full source code: hopglass-server/modules/receiver/announced.js#L80
Excerpt with the error output:
Relates to hopglass/hopglass-server#107
The text was updated successfully, but these errors were encountered: