Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 09 Aug 2017 23:09:44 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-bugs@FreeBSD.org
Subject:   [Bug 221379] bsdinstall(8): Installer doesn't support default router outside local subnet
Message-ID:  <bug-221379-8-xpNYuDl44V@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-221379-8@https.bugs.freebsd.org/bugzilla/>
References:  <bug-221379-8@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D221379

--- Comment #3 from Nils Steinger <nrg_freebsd-bugs@voidptr.de> ---
And then=E2=80=A6

*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.

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-221379-8-xpNYuDl44V>