From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 1 13:00:18 2006 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8474816A423 for ; Wed, 1 Feb 2006 13:00:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49C2043D48 for ; Wed, 1 Feb 2006 13:00:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k11D0HAW081072 for ; Wed, 1 Feb 2006 13:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k11D0Hl7081071; Wed, 1 Feb 2006 13:00:17 GMT (envelope-from gnats) Date: Wed, 1 Feb 2006 13:00:17 GMT Message-Id: <200602011300.k11D0Hl7081071@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: =?windows-1251?b?wuDx6Ovo6SDP5fLw7uI=?= Cc: Subject: Re: kern/92677 : if_bridge does not broadcast X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?windows-1251?b?wuDx6Ovo6SDP5fLw7uI=?= List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2006 13:00:18 -0000 The following reply was made to PR kern/92677; it has been noted by GNATS. From: =?windows-1251?b?wuDx6Ovo6SDP5fLw7uI=?= To: bug-followup@freebsd.org, larry@fantasyclub.ru Cc: Subject: Re: kern/92677 : if_bridge does not broadcast Date: Wed, 1 Feb 2006 19:59:24 +0700 I don't think it is complete solution, but nmblookup started to function properly for me on broadcast lookups. However it still does not lookup self name (as it does on normal network interfaces). --- if_bridge.c.orig Fri Oct 28 03:43:07 2005 +++ if_bridge.c Wed Feb 1 19:44:56 2006 @@ -454,5 +454,5 @@ if_initname(ifp, ifc->ifc_name, unit); ifp->if_mtu = ETHERMTU; - ifp->if_flags = IFF_MULTICAST; + ifp->if_flags = IFF_MULTICAST|IFF_BROADCAST; ifp->if_ioctl = bridge_ioctl; ifp->if_output = bridge_output;