From owner-freebsd-questions@FreeBSD.ORG Fri Sep 24 13:54:59 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E08B1065670 for ; Fri, 24 Sep 2010 13:54:59 +0000 (UTC) (envelope-from leif.walsh@gmail.com) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id D44BB8FC0C for ; Fri, 24 Sep 2010 13:54:58 +0000 (UTC) Received: by qyk31 with SMTP id 31so1396251qyk.13 for ; Fri, 24 Sep 2010 06:54:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:received :in-reply-to:references:date:message-id:subject:from:to:content-type; bh=rfgde9ZM1eDwFHhPRHHZVuY6ZRI4njKxQuyIzetG2Zk=; b=SUoRUL0wka/tZjLxRnY+dL1s/3Bz2Jr03Kc4/f0GK9xJp8yQsLFUWhlvXzMc94vqwM OH5k7qaDDhsIbP3OKNgfKM8CuK5hAYwrC1m2jNCB3v7RXBcdLT8n6rfDDKENsBf3jRX1 tKtTM2h8cPrU+LTgUjZXkV6svZtarlpZ9ZhSg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=pPazE72bFh4dk/EZ7PQDrq5cjUFwy/fZ6tBtf3drmqPmexymg7k9k/b1hvo442uU4y sekmYFSjZpGLkxQhlToj2qNEHse4ddXZF3lzsepyxK6rtKSUqlFVhRrA83nBQc94bNCl jnsVZ0PoZuOKQ7zqFTXnV/afZePneQGYMYT5o= MIME-Version: 1.0 Received: by 10.229.224.149 with SMTP id io21mr2526037qcb.160.1285336497924; Fri, 24 Sep 2010 06:54:57 -0700 (PDT) Received: by 10.229.79.193 with HTTP; Fri, 24 Sep 2010 06:54:54 -0700 (PDT) Received: by 10.229.79.193 with HTTP; Fri, 24 Sep 2010 06:54:54 -0700 (PDT) In-Reply-To: References: Date: Fri, 24 Sep 2010 09:54:54 -0400 Message-ID: From: Leif Walsh To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: lagg trouble 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: Fri, 24 Sep 2010 13:54:59 -0000 I have the following in /boot/loader.conf: if_iwn_load="YES" iwn5000fw_load="YES" wlan_wep_load="YES" wlan_ccmp_load="YES" wlan_tkip_load="YES" and the following in /etc/rc.conf: ifconfig_em0="up" ifconfig_iwn0="ether 00:1f:16:0c:46:82" wlans_iwn0="wlan0" ifconfig_wlan0="WPA" cloned_interfaces="lagg0" ifconfig_lagg0="laggproto failover laggport em0 laggport wlan0 DHCP" On boot, lagg0 gets created and correctly includes em0 and wlan0 as laggports. Dhcp starts on lagg0, but if I ping a hostname, I get a timeout, and if I ping an ip address, I get send failed, something like no room in buffer (not on that comp now). If I do a netif restart, it brings back eth0 and lagg0, but lagg0 doesn't include wlan0, which seems to get started later (and not by netif? The output says it stops lo, em, iwn, lagg, tun, ipfw, and wlan, but only starts lo, em, iwn, and lagg, and directly after, ifconfig shows everything up, just lagg0 not using wlan0). If I do a dhclient wlan0 (assuming wpa_supplicant finds something it likes), I get a working network connection, but not if I manually patch it through lagg0 through lagg0. Is there a way to ensure that wlan gets up before lagg? Why would I get that buffer error through lagg? Also, if I have to switch wireless routers and use wpa_cli, can I get dhclient to notice and automatically request a new ip? -- Cheers, Leif