-
Notifications
You must be signed in to change notification settings - Fork 759
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
Feature: configurable IPv6 Link-Local address #817
Labels
help wanted
Contributor missing / timeout
Comments
|
This issue has been automatically timed-out (after 180 days of inactivity). For more information about the policies for this repository, If someone wants to step up and work on this issue, |
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Link-Local addresses should be configurable for interfaces when using Static IPv6.
It can be very useful to be able to set link-local ips for a router, fe80::1 is commonly used for the "internal side" of a router so that no matter what range an IPv6 network might be using on various interfaces, you can always use a gateway address of fe80::1
For the implementation, if an interface does not yet have any IPv6 configured, ie, not inet6 addresses, it is as simple as:
ifconfig ixv0 inet6 fe80::1/64 -auto_linklocal
If IPv6 is already configured, you must first remove all inet6 addresses; first standard ipv6, followed by link-local, then you can run the above command to configure the static link-local.
On the UI side, there would simply need to be an additional optional field for setting the link-local ip when configuring Static IPv6 that only allows you to set the ip, not the bits, which should be /64. For validation, the ip only need's to be within fe80::/64
The text was updated successfully, but these errors were encountered: