From owner-freebsd-current@FreeBSD.ORG Sat Aug 17 19:54:43 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 259EED5D for ; Sat, 17 Aug 2013 19:54:43 +0000 (UTC) (envelope-from eric.camachat@gmail.com) Received: from mail-pa0-x22e.google.com (mail-pa0-x22e.google.com [IPv6:2607:f8b0:400e:c03::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EF0A228D9 for ; Sat, 17 Aug 2013 19:54:42 +0000 (UTC) Received: by mail-pa0-f46.google.com with SMTP id fa1so3173398pad.19 for ; Sat, 17 Aug 2013 12:54:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:from:to:cc:in-reply-to:references:content-type:date :message-id:mime-version:content-transfer-encoding; bh=rwgNTpyXQQQGcfHlaaMBCipF71iAk7elyl3BGScOipA=; b=qnmtBOUKoJ5u3zghjZFHkvNoCMCY7OI7csh44o3HHs2uB9QXN5RQHnWYdkYUAvbLE9 q+O4DT1fhypDzD0hpvn6cYn015ZovEdpOF/TmuKKlWpnDpYM5jZazKguTHiSHKrePCG1 ZqeRq4wHvW/kQ3X+D1UIwp3ErGlyEtL1I6716dVYMwSSspMQBNt2WCd8/17xjg07q3DS qix5Yq7uIToIhPaaW+U50mnZ7rU2jh3A2Pcls4qCD8SfsS7s3RIA12/18qz3QYqdazai uBJi9/rkF/AyD4h5Hgzn7fczGRGkzT2ZTpycq2tTSXn47fFqMFE8AKh6m/3S/KGLzyPo 79fw== X-Received: by 10.66.102.1 with SMTP id fk1mr4482318pab.90.1376769282643; Sat, 17 Aug 2013 12:54:42 -0700 (PDT) Received: from ?IPv6:2601:9:3000:34c:a288:b4ff:fec2:e5d0? ([2601:9:3000:34c:a288:b4ff:fec2:e5d0]) by mx.google.com with ESMTPSA id in2sm5277848pbc.37.1969.12.31.16.00.00 (version=SSLv3 cipher=RC4-SHA bits=128/128); Sat, 17 Aug 2013 12:54:42 -0700 (PDT) Subject: Re: ipv6_activate_all_interfaces doesn't work on wireless interface. From: Eric L Camachat To: Kevin Oberman In-Reply-To: References: <1376632058.1841.6.camel@localhost> <1376761128.1922.2.camel@localhost> Content-Type: text/plain; charset="UTF-8" Date: Sat, 17 Aug 2013 12:54:41 -0700 Message-ID: <1376769281.1943.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: Kimmo Paasiala , FreeBSD current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Aug 2013 19:54:43 -0000 On Sat, 2013-08-17 at 11:12 -0700, Kevin Oberman wrote: > On Sat, Aug 17, 2013 at 10:38 AM, Eric L Camachat > wrote: > On Sat, 2013-08-17 at 10:18 -0700, Kevin Oberman wrote: > > > There was a revision to networks.subr in r253683 that > removed > > accept_rtadv from default for bridge interfaces. > > > > At least the comment says that it should not be default > which implies > > that it used to be. If there is a logic error in the commit > (I just > > noted the change to rtadv and the comment, but did not > attempt to > > confirm the logic), perhaps accept_rtadv got turned off on > more than > > just bridge interfaces. > > > > > > > > 564 > > > > > > bridge[0-9]*) > > 565 > > > > > > # No accept_rtadv by > > default on if_bridge(4) > > 566 > > > > > > # to avoid a > > conflict with the > > member > > 567 > > > > > > # interfaces. > > 568 > > > > > > return 1 > > 569 > > > > ;; > > 570 > > > > *) > > > > That script affect only when ipv6_enable="YES" for backward > compatibility, from its comments. > > Eric > > Look further down in the commit for line in the 560s. The section I > copied was the general case, not the legacy one. The code for both > is .included. > > -- I see, thanks.