[Bug 221379] bsdinstall(8): Installer doesn't support default router outside local subnet

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Wed Aug 9 23:09:44 UTC 2017


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=221379

--- Comment #3 from Nils Steinger <nrg_freebsd-bugs at voidptr.de> ---
And then…

*Same issue with IPv6:*

`netconfig_ipv6` has the exact same problem and should receive similar
treatment.
However, my solution for IPv4 can't be applied verbatim because awk loses
accuracy when going up to 2^64:

% awk 'BEGIN {print(2^64)}'
18446744073709551616
% awk 'BEGIN {print(2^64-1)}'
18446744073709551616
% awk 'BEGIN {print(2^64-1000)}'
18446744073709551616

So we would have to find another way to to subnet parsing for IPv6.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-bugs mailing list