From owner-freebsd-stable@FreeBSD.ORG Tue Jan 26 03:01:47 2010 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0ED8410656A8 for ; Tue, 26 Jan 2010 03:01:47 +0000 (UTC) (envelope-from ncrogers@gmail.com) Received: from mail-pz0-f176.google.com (mail-pz0-f176.google.com [209.85.222.176]) by mx1.freebsd.org (Postfix) with ESMTP id D33C28FC1F for ; Tue, 26 Jan 2010 03:01:46 +0000 (UTC) Received: by pzk6 with SMTP id 6so1449509pzk.3 for ; Mon, 25 Jan 2010 19:01:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=5ZmkDiZhG3Xp247TQUUEC4B+oYu6jXJ9L1Yha8POyyg=; b=rTjjmrk0HZExIFmG15xiFywaHPoIAsuCiONbyyCkOkCXmM7R+1bNe6ik9D1OBilO1O dSoxAbeY5AbS4F4P9JIxTY93HiwG4GxCYSonloI9qJCoYHOzRFfcpvL8sdxI5Vo53cXj OqF0Sh0zPG4RtJ0rQ/zgmdI1UTiAToR1cP7e0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=xnMCbPfstX6R6tQpe3E/a/arfQir8ZIhEN0yQGZPl79TVZVBBNuP/Ey2g4KSoVM+Zy n5T84pRvgmQmlI6P3N/Aa8hvjxUciVFr0mboNuCnGBxkmc7W2rnxoHDz1bRC7BQ+1JwT INdHaTsvw4KJ3R2mS3SGc9FsS8Sr3Ni0mAf9s= MIME-Version: 1.0 Received: by 10.143.153.19 with SMTP id f19mr10814wfo.36.1264474906375; Mon, 25 Jan 2010 19:01:46 -0800 (PST) Date: Mon, 25 Jan 2010 19:01:46 -0800 Message-ID: <147432021001251901u7d56f014n83e834061fd09fec@mail.gmail.com> From: Nick Rogers To: stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: netstat output changes in 8.0? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Jan 2010 03:01:47 -0000 Before 8.0-RELEASE, if I ran netstat -rn, it listed a separate route for each host on the network, along with its MAC address. For example ... 172.20.172.17 00:02:b3:2f:64:6a UHLW 1 105712 1500 vlan172 595 172.20.172.20 00:1e:c9:bb:7c:a9 UHLW 1 1002 1500 vlan172 598 172.20.172.22 00:14:5e:16:bb:b6 UHLW 1 107 1500 vlan172 491 This behavior seems to have changed in 8.0, where now only the locally-assigned IP addresses and related CIDRs are displayed. Is there any way to get this behavior back, perhaps with a new flag that I am not able to find? Or some sysctl? I have a script that was relying on each host's "expire" flag in the routing table to determine when the MAC address first appeared on the network according to ARP.