Replies: 2 comments
-
|
If you want to prefer IPv6 over IPv4, the DisabledComponents registry value seems like the way to go. But in any case, this should be done with a custom script, not with a dedicated setting in the generator. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
No, DisabledComponents does not help here at all. IPv6 is preferred over IPv4 by default, but that does not apply to SLAAC / ULA addresses. Yes, I've done this with a custom script, just thought it would be nice to have a setting for this in the generator. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
By default, windows prefers IPv4 over IPv6 ULA addresses via prefix policies:
As a result, local hostnames are always resolved over IPv4, even when ULAs are correctly configured in the network.
It can be fixed with this command:
netsh int ipv6 set prefix ::ffff:0:0/96 2 4which lowers the priority of the IPv4 prefix.It may also be a good idea to favor ULAs over GUAs.
Can we have this configurable via Unattend-Generator?
Beta Was this translation helpful? Give feedback.
All reactions