Date: Mon, 29 Jan 2018 10:34:05 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 138678] [lo] FreeBSD does not assign linklocal address to loopbacks >0 Message-ID: <bug-138678-2472-ISPiu6lFKp@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-138678-2472@https.bugs.freebsd.org/bugzilla/> References: <bug-138678-2472@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=3D138678 --- Comment #4 from commit-hook@freebsd.org --- A commit references this bug: Author: ae Date: Mon Jan 29 10:33:56 UTC 2018 New revision: 328540 URL: https://svnweb.freebsd.org/changeset/base/328540 Log: Assign IPv6 link-local address to loopback interfaces whith unit > 0. When an interface has IFF_LOOPBACK flag in6_ifattach() tries to assing IPv6 loopback address to this interface. It uses in6ifa_ifpwithaddr() to check, that interface doesn't already have given address and then uses in6_ifattach_loopback(). If in6_ifattach_loopback() fails, it just exits and thus skips assignment of IPv6 LLA. Fix this using in6ifa_ifwithaddr() function. If IPv6 loopback address is already assigned in the system, do not call in6_ifattach_loopback(). PR: 138678 MFC after: 3 weeks Changes: head/sys/netinet6/in6_ifattach.c --=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-138678-2472-ISPiu6lFKp>