From owner-freebsd-current@FreeBSD.ORG Wed Jul 6 08:54:51 2005 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59A9C16A41C; Wed, 6 Jul 2005 08:54:51 +0000 (GMT) (envelope-from dwmalone@maths.tcd.ie) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 7F5E243D49; Wed, 6 Jul 2005 08:54:50 +0000 (GMT) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie ([134.226.81.10] helo=walton.maths.tcd.ie) by salmon.maths.tcd.ie with SMTP id ; 6 Jul 2005 09:54:48 +0100 (BST) Date: Wed, 6 Jul 2005 09:54:48 +0100 From: David Malone To: snort Snort Message-ID: <20050706085448.GA74870@walton.maths.tcd.ie> References: <20050706054855.53812.qmail@web54405.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050706054855.53812.qmail@web54405.mail.yahoo.com> User-Agent: Mutt/1.5.6i Sender: dwmalone@maths.tcd.ie Cc: stable@freebsd.org, freebsd-current@freebsd.org Subject: Re: network resquest to tap pseudo device driver X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2005 08:54:51 -0000 On Tue, Jul 05, 2005 at 10:48:55PM -0700, snort Snort wrote: > Can anybody tell me what benefit for building a tap > pseudo ethernet device driver for some sort of network > communication? Why not directly communicate thru a > "real" ethernet device driver like fxp0, xl0, etc. A tap interface can be used by machine that don't have real hardware (for example, a vmware virtual machine) to access a real network. Another possibility is to use a tap interface to bridge two ethernets together over an intermediate IP network, possibly encrypting the frames in transit. David.