From owner-freebsd-questions@FreeBSD.ORG Mon Mar 13 21:05:10 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8EB0716A420 for ; Mon, 13 Mar 2006 21:05:10 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FCD743D64 for ; Mon, 13 Mar 2006 21:05:10 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 431B15D11; Mon, 13 Mar 2006 16:05:09 -0500 (EST) Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32124-03; Mon, 13 Mar 2006 16:05:08 -0500 (EST) Received: from [199.103.21.238] (pan.codefab.com [199.103.21.238]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 6DBE85D09; Mon, 13 Mar 2006 16:05:08 -0500 (EST) In-Reply-To: <4415CE9A.2060700@calarts.edu> References: <4415CE9A.2060700@calarts.edu> Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <4B103F6D-B922-4E68-97A7-07E608ABF361@mac.com> Content-Transfer-Encoding: 7bit From: Charles Swiger Date: Mon, 13 Mar 2006 16:05:06 -0500 To: Sean Murphy X-Mailer: Apple Mail (2.746.2) X-Virus-Scanned: amavisd-new at codefab.com Cc: freebsd-questions@freebsd.org Subject: Re: NIC and Jumbo Frames X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 21:05:10 -0000 On Mar 13, 2006, at 2:57 PM, Sean Murphy wrote: > How do I set Jumbo Frames on a Gigabit NIC in FreeBSD? ifconfig _device_ mtu 8192 ...where you would use em0, bge0, or whatever the actual interface device is. See the manpages for the various devices, for example "man em": Support for Jumbo Frames is provided via the interface MTU setting. Selecting an MTU larger than 1500 bytes with the ifconfig(8) utility con- figures the adapter to receive and transmit Jumbo Frames. The maximum MTU size for Jumbo Frames is 16114. ...which usually will discuss the MTU sizes the specific devices can handle. -- -Chuck