From owner-freebsd-questions@FreeBSD.ORG Tue Oct 13 12:40:49 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4AC91065672 for ; Tue, 13 Oct 2009 12:40:49 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: from smtp.ibctech.ca (v6.ibctech.ca [IPv6:2607:f118::b6]) by mx1.freebsd.org (Postfix) with SMTP id 4C7028FC18 for ; Tue, 13 Oct 2009 12:40:49 +0000 (UTC) Received: (qmail 42906 invoked by uid 89); 13 Oct 2009 12:41:06 -0000 Received: from unknown (HELO ?IPv6:2607:f118::5?) (steve@ibctech.ca@2607:f118::5) by 2607:f118::b6 with ESMTPA; 13 Oct 2009 12:41:06 -0000 Message-ID: <4AD47563.8050206@ibctech.ca> Date: Tue, 13 Oct 2009 08:41:07 -0400 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Brian McCann References: <2b5f066d0910130531w7a7bf6aft81fd3782b7754e27@mail.gmail.com> In-Reply-To: <2b5f066d0910130531w7a7bf6aft81fd3782b7754e27@mail.gmail.com> X-Enigmail-Version: 0.96.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions Subject: Re: Broadcom bce interface problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Oct 2009 12:40:49 -0000 Brian McCann wrote: > I'm having problems with the bce interface on a FreeBSD 7.2 install, using > an IBM BladeCenter HS21 machine. The machine uses the NetXtreme II card. > The really strange thing here is, the switch shows a link, but the card > shows no carrier in the setup. It started working for a few seconds at one > point when I reset the switch (at least, I think that's what I did), and it > detected 1000BaseSX as the media and showed a status of active, but promptly > went away. If I try setting the media type manually, that doesn't appear to > work. > Has anyone seen this or have any ideas? Try forcing the interface to 'up': # ifconfig bce0 up If that works, add it to the /etc/rc.conf: # echo 'ifconfig_bce0="up"' >> /etc/rc.conf Steve