From owner-freebsd-net@freebsd.org Fri Jul 10 13:07:28 2015 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF43575FB for ; Fri, 10 Jul 2015 13:07:28 +0000 (UTC) (envelope-from kpielorz_lst@tdx.co.uk) Received: from mail.tdx.com (mail.tdx.com [62.13.128.18]) by mx1.freebsd.org (Postfix) with ESMTP id 99FF210F4 for ; Fri, 10 Jul 2015 13:07:27 +0000 (UTC) (envelope-from kpielorz_lst@tdx.co.uk) Received: from [10.12.30.106] (vpn01-01.tdx.co.uk [62.13.130.213]) (authenticated bits=0) by mail.tdx.com (8.14.3/8.14.3/) with ESMTP id t6AD4hqb033430 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 10 Jul 2015 14:04:44 +0100 (BST) Date: Fri, 10 Jul 2015 14:04:44 +0100 From: Karl Pielorz To: freebsd-net@freebsd.org Subject: lagg of em0/em1 + VLAN = lower MTU? Message-ID: <7CFE75F7566F5789DAD9FBB2@[10.12.30.106]> X-Mailer: Mulberry/4.0.8 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Jul 2015 13:07:28 -0000 Hi, I've got a 10.1 box with a couple of Intel(R) PRO/1000 (82571EB) cards in it, e.g. " em0: flags=8843 metric 0 mtu 1500 options=4019b ... " I've set these up as a fail-over lagg interface, lagg0: " lagg0: flags=8843 metric 0 mtu 1500 options=4019b ... inet y.y.y.y ... laggproto failover lagghash l2,l3,l4 laggport: em1 flags=0<> laggport: em0 flags=5 " This works fine. If I add a VLAN now to that, I end up with: " lagg0.10: flags=8843 metric 0 mtu 1496 ... inet x.x.x.x ... vlan: 60 parent interface: lagg0 " The MTU on lagg0.10 has shrunk by 4 (size of VLAN tag). Is there a way of avoiding that? -Karl