From owner-freebsd-questions@FreeBSD.ORG Tue Oct 26 17:10:30 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E02D316A4CE for ; Tue, 26 Oct 2004 17:10:30 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96E2A43D46 for ; Tue, 26 Oct 2004 17:10:30 +0000 (GMT) (envelope-from adnichols@gmail.com) Received: by wproxy.gmail.com with SMTP id 68so196935wri for ; Tue, 26 Oct 2004 10:10:24 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=aXKBQFsvA6Y9biWcu4CTGKTGAKdgG7WPIi3adOKcsswdIjL2gmFZkZSq7xTFwtfcYUyOX8Brdhl+7eRPwLydXGYFp1Ig8TJipwXkZQVv78iQMZtzFODlApOwW4BnB+NmZEQr3YOPiQa389AxMSiDOUegoCK1RQlACxgpVwftMvE= Received: by 10.54.30.19 with SMTP id d19mr71937wrd; Tue, 26 Oct 2004 10:10:24 -0700 (PDT) Received: by 10.54.35.52 with HTTP; Tue, 26 Oct 2004 10:10:24 -0700 (PDT) Message-ID: Date: Tue, 26 Oct 2004 10:10:24 -0700 From: Aaron Nichols To: Adam Seniuk In-Reply-To: <20041026170034.5833D43D49@mx1.FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <57d710000410260956535c2242@mail.gmail.com> <20041026170034.5833D43D49@mx1.FreeBSD.org> cc: questions@freebsd.org Subject: Re: 2 Network Cards & 2 IP's? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Aaron Nichols List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2004 17:10:31 -0000 On Tue, 26 Oct 2004 11:00:45 -0600, Adam Seniuk wrote: > > xl0 > > arp: 192.168.1.100 is on fxp0 but got reply from 00:02:b3:9f:74:89 on > > xl0 > > arp: 192.168.1.1 is on fxp0 but got reply from 00:07:e9:10:43:78 on > > I get these messages in my logs (quite a few) > > So I am not sure what is wrong. I noticed in another thread that freebsd > does not allow ips from the same netmask so how does the blundering windows > do it? Those messages are probably technically correct. Since both NIC's are on the same wire, they are both going to see the same ARP request/responses. I assume this error is just indicating that there is already an ARP entry for 192.168.1.100 which indicates that it can be found via fxp0 and it just saw an ARP response indicating that it is also available via xl0 - so which should it use? It's a bit confusing to a machine which has to select the correct NIC to send traffic out. What is the goal of all this? Typically for multipe IP's on the same subnet you would just use an alias - I assume that's not suitable in this case but am not sure why. Aaron