From owner-freebsd-net@FreeBSD.ORG Tue Oct 8 00:47:33 2013 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F317F293 for ; Tue, 8 Oct 2013 00:47:32 +0000 (UTC) (envelope-from kurt.buff@gmail.com) Received: from mail-vb0-x22c.google.com (mail-vb0-x22c.google.com [IPv6:2607:f8b0:400c:c02::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B3C6A2245 for ; Tue, 8 Oct 2013 00:47:32 +0000 (UTC) Received: by mail-vb0-f44.google.com with SMTP id e13so3960226vbg.31 for ; Mon, 07 Oct 2013 17:47:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=7v4V3lWgwAN9rE3Kqy4qMTMNrJPdXTxv/Z9kkir+yb4=; b=0wYLk74TKEadYh8CEUw/acn3hIS4b25On/2BAForrWokEMlqT6Amw5K0TSncaG3Qpb NzpkJX7HQpfUzCcUTPoJWnPZt9nxufasVUcjl1CEfO6j02xyXGmzEoAJtQFNR5YRIahM BK/jYXyMkwUzch/uM0I8/drYwxAnJ/vUD6LRgz+I0t71eRo/3rAnUHROrNvWvz9z72dz QdSih3au6yk9k9kybf9mZmNOkIhM/FXisRCX6bW/40sAQR93raAy1jwZ4IkuZGUPPVZy hZk5ABoZ0fkEUKQVJVU/ctCLQXACLBB7rUnooahNPtK9+V5jRdJ6VOrVkSJD4iprJDQV Scdw== MIME-Version: 1.0 X-Received: by 10.220.145.132 with SMTP id d4mr28880088vcv.9.1381193251813; Mon, 07 Oct 2013 17:47:31 -0700 (PDT) Received: by 10.220.14.196 with HTTP; Mon, 7 Oct 2013 17:47:31 -0700 (PDT) In-Reply-To: <20131008003359.GA3162@michelle.cdnetworks.com> References: <20131008003359.GA3162@michelle.cdnetworks.com> Date: Mon, 7 Oct 2013 17:47:31 -0700 Message-ID: Subject: Re: Problem with Lenovo SL500 From: Kurt Buff To: pyunyh@gmail.com Content-Type: text/plain; charset=UTF-8 Cc: freebsd-net@freebsd.org X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Oct 2013 00:47:33 -0000 Wow. What a rookie mistake. :( 'ifconfig re0 up' brought it right up. I'll add that line to rc.conf as 'ifconfig_re0="UP"' Thanks, Kurt On Mon, Oct 7, 2013 at 5:33 PM, Yonghyeon PYUN wrote: > On Mon, Oct 07, 2013 at 03:14:58PM -0700, Kurt Buff wrote: >> All, >> >> This machine has for its wired port a RealTek unit: >> >> re0: port >> 0xe800-0xe8ff mem 0xfcfff000-0xfcffffff,0xfcfe0000-0xfcfeffff irq 19 >> at device 0.0 on pci12 >> re0: Using 1 MSI-X message >> re0: ASPM disabled >> re0: Chip rev. 0x3c000000 >> re0: MAC rev. 0x00400000 >> miibus0: on re0 >> rgephy0: PHY 1 on miibus0 >> rgephy0: none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, >> 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT, 1000baseT-master, >> 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, >> 1000baseT-FDX-flow-master, auto, auto-flow >> re0: Ethernet address: 00:26:18:45:77:51 >> >> >> I've got wireless working for iwn (thanks Adrian!), and I'm trying to >> use the wired NIC (re0) as an unnumbered port to monitor a mirror port >> on an HP switch. However, when I connect it, it shows up as only >> 10mbit, half-duplex on the switch, and it refuses to send packets. >> >> I've tried 'ifconfig re0 media 1000baseT -mediaopt full-duplex' >> >> with no particular luck, as it shows the following >> >> re0: flags=8802 metric 0 mtu 1500 >> options=8209b >> ether 00:26:18:45:77:51 >> nd6 options=29 >> media: Ethernet 1000baseT (10baseT/UTP ) >> status: active >> >> I get no output from 'tcpdump -npi re0'. I get link light, and it >> worked great on re0 when I did the install for FreeBSD, but no joy for >> capturing packets from the switch. > > It seems you didn't UP the interface. And you may have to put the > interface into promiscuous mode to capture all packets(i.e. remove > -p option). > >> >> Anyone have some thoughts to share on this? Yes, I tried using a new >> cable, too... >> >> Kurt