-
Notifications
You must be signed in to change notification settings - Fork 99
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
bug: DHCPv6 does not respect prefix assigned to interface (<=/64) #199
Comments
fixes openwrt#199 Signed-off-by: Matthias Riegler <[email protected]>
Same issue for me with a /96. @xvzf I saw you close your PR, but your patch work great for me (Except for a typo "return return 0;". Is it safe to use it ? |
yeah, I've been using it since a while - I'll fix the upstream PR and will re-open it 🤞 |
fixes openwrt#199 Signed-off-by: Matthias Riegler <[email protected]>
@dguglielmi feel free to upvote the PR/ comment you tested it - might help getting this upstream |
I'm currently trying to split my /64 ULA into multiple /112 (per VLAN), is this patch supposed to help with that? If yes, how can I test it? Currently, setting the interface to a /112 prefix (option ip6assign '112'), the interface gets no IPv6 at all. |
No, this PR only fixes an issue where addresses were assigned in the broader /64 prefix, even though the interface is only a /112 |
When odhcpd hands out IPv6 leases on an interface with a prefix <=/64 (e.g. /96), leases can (and often are) outside of the allocated /96 on the interface.
I've looked a bit at the code and it seems the host_id calculation always infers 64bit, thus a /64 prefix. I would've expected odhcpd in DHCPv6 server mode, to actually respect the assigned prefix.
Are you open PR to fix this?
The text was updated successfully, but these errors were encountered: