From owner-freebsd-net@FreeBSD.ORG Tue Sep 11 21:35:06 2012 Return-Path: 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 2F9D31065687; Tue, 11 Sep 2012 21:35:04 +0000 (UTC) (envelope-from fjwcash@gmail.com) Received: from mail-lpp01m010-f54.google.com (mail-lpp01m010-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 7492B8FC14; Tue, 11 Sep 2012 21:35:02 +0000 (UTC) Received: by lage12 with SMTP id e12so800495lag.13 for ; Tue, 11 Sep 2012 14:34:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=SVzeH5cmM2D0ZPhsfhkp7Gv5uAsZy841C3JfYr/6dQw=; b=E/58jLEHRy+gw0fww1QzO5TjVAZwa8STbHtxuyP6wa4fwSKMQngG0dUYT8SWLiHXSz Ow899UsQCZZ3HE8PoJWmFEZaiW0HFSYJNTJrf6Y3DHc3Asc8fMrBY70w6/n8F/7H5fEC 5GsGdFYAly13n2NuNhoXWzZFVwCriz2+3RaZb3D5x1p64RsNFR09H3nkB71YNwcTv61V 8ebe7MglymIjeOtWoXWGpUhNZbnYBfjV8tVDu8DGQrOAeLo3Frn3pg6aLeRnnniE/B1L s+c63pt2Xd8vVXJR+GMqYuCcBKNE0MZjNbI2ExNJMSIlRGQ4g6nuAW0iit8frX/5mTf1 cq9g== MIME-Version: 1.0 Received: by 10.152.103.11 with SMTP id fs11mr16903975lab.23.1347399296233; Tue, 11 Sep 2012 14:34:56 -0700 (PDT) Received: by 10.114.23.230 with HTTP; Tue, 11 Sep 2012 14:34:56 -0700 (PDT) Received: by 10.114.23.230 with HTTP; Tue, 11 Sep 2012 14:34:56 -0700 (PDT) In-Reply-To: <504FA735.709@zirakzigil.org> References: <5033FB17.7020600@zirakzigil.org> <503884A0.50708@zirakzigil.org> <503BC8F5.3040208@zirakzigil.org> <503E7A16.6030600@zirakzigil.org> <5044F62E.8030001@zirakzigil.org> <504FA735.709@zirakzigil.org> Date: Tue, 11 Sep 2012 14:34:56 -0700 Message-ID: From: Freddie Cash To: Giulio Ferro Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-net@freebsd.org, "freebsd-stable@freebsd.org" Subject: Re: Issue with igb and lagg (was Re: Problem with link aggregation + sshd) 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: Tue, 11 Sep 2012 21:35:06 -0000 On Sep 11, 2012 2:12 PM, "Giulio Ferro" wrote: > > Well, there definitely seems to be a problem with igb and lagg. > > igb alone works as it should, but doesn't seem to work properly in lagg. > > To be sure I started from scratch from a 9.0 release with nothing but: > > /etc/rc.conf > --------------------------------------------------- > ifconfig_igb0="inet ..." > > ifconfig_igb1="up" > ifconfig_igb2="up" > ifconfig_igb3="up" > > cloned_interfaces="lagg0" > ifconfig_lagg0="laggproto lacp laggport igb1 laggport igb2 laggport igb3 192.168.x.x/24" > > sshd_enable="YES" > --------------------------------------------------- > > This doesn't even manage to start sshd, it just hangs there at boot. > > Disabling lagg configuration everything works correctly. > Just curious: does it work if you split the lagg configuration from the IP config: ifconfig_lagg0="laggproto ..." ifconfig_lagg0_alias0="inet 192..." I've had problems in the past with cloned interfaces not working right if you do everything in one ifconfig line. Never spent much time debugging it, though, as the split config always worked.