From owner-freebsd-net@FreeBSD.ORG Sat Mar 17 17:09:32 2007 Return-Path: X-Original-To: freebsd-net@freebsd.org Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2B8316A401 for ; Sat, 17 Mar 2007 17:09:32 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from gaia.nimnet.asn.au (nimbin.lnk.telstra.net [139.130.45.143]) by mx1.freebsd.org (Postfix) with ESMTP id 8509A13C487 for ; Sat, 17 Mar 2007 17:09:31 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from localhost (smithi@localhost) by gaia.nimnet.asn.au (8.8.8/8.8.8R1.5) with SMTP id EAA04205; Sun, 18 Mar 2007 04:09:23 +1100 (EST) (envelope-from smithi@nimnet.asn.au) Date: Sun, 18 Mar 2007 04:09:22 +1100 (EST) From: Ian Smith To: Colin Waring In-Reply-To: <55974.84.92.207.22.1174145435.squirrel@mail.southportcomputers.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-net@freebsd.org Subject: Re: Troubleshooting aliases. X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Mar 2007 17:09:33 -0000 On Sat, 17 Mar 2007, Colin Waring wrote: > Basically, .a and .d respond to pings and pass all traffic > .b and .c respond to pings but don't appear to pass any other traffic. > > IPF is compiled but I've completely turned it off for testing If you run one tcpdump on lo0 and another on em0 and try 'other traffic' you should be able to see which packets are/n't getting out, or through. Other things maybe worth checking: # netstat -finet -rna # after pinging all your aliases # arp -an # check address (incl bcast) at MAC on interface # sockstat -4 # which addresses/ports are listening/connected > None of the actual configuration has changed though so I wouldn't expect > anything to show up in ifconfig any as it was all working like this > previously.. > > em0: flags=8843 mtu 1500 > options=b > inet6 fe80::215:c5ff:fe5d:f7b7%em0 prefixlen 64 scopeid 0x1 > inet a.a.a.a netmask 0xffffff00 broadcast a.a.a.255 > inet a.a.a.b netmask 0xffffffff broadcast a.a.a.255 > inet a.a.a.c netmask 0xffffffff broadcast a.a.a.255 > inet a.a.a.d netmask 0xffffffff broadcast a.a.a.255 > ether 00:15:c5:5d:f7:b7 > media: Ethernet autoselect (100baseTX ) > status: active Did you specify those broadcast addresses on b, c and d? Here I'd see a.a.a.b through a.a.a.d broadcast addresses for those having 0xffffffff netmasks (on 5.5-S) but don't know if that's relevant to your problem. Cheers, Ian