From owner-freebsd-questions@FreeBSD.ORG Sun Jan 31 22:16:27 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 9594C106568B for ; Sun, 31 Jan 2010 22:16:27 +0000 (UTC) (envelope-from jamesbrandongooch@gmail.com) Received: from mail-pz0-f181.google.com (mail-pz0-f181.google.com [209.85.222.181]) by mx1.freebsd.org (Postfix) with ESMTP id 6D54E8FC15 for ; Sun, 31 Jan 2010 22:16:27 +0000 (UTC) Received: by pzk11 with SMTP id 11so2164080pzk.14 for ; Sun, 31 Jan 2010 14:16:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=Y/Vhv/IO/hD2puaoNDdvvvJaeLAUgvOV4AZ9/Z9bwNw=; b=RrWSmU5yyMdJWOevI9hMaRcoUfQXCMZSnNuI2MlF2NZf0PA8T0tCEp7V2RK7SFii2U +gwGm0COlPKzc5ZGoeaZoqw4oY5+Yezo3rX+zP6cLjYRa0+BtI2dgTs4Ox12nxIDKK/r 31E7Z2WU8ebnkPwwB/C3T4lrYooem8Fq9MpBc= 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 :cc:content-type; b=px74FjWsKRhKEZTyAmYwJd9pxCa9vlJMhQ3uL6tdloZvUOX20KPtiqGqOkMO4FDhFN dae+yv3y46pM4N2vbvAldslzoWDhTY5z/6C87s8jn1qNdw0OgncTfooaK/BxPwjQOVly LMqV0kzeaA7e1oOiyd3NXDVKwvcKTgmNF6aXg= MIME-Version: 1.0 Received: by 10.142.67.41 with SMTP id p41mr2517070wfa.284.1264974712777; Sun, 31 Jan 2010 13:51:52 -0800 (PST) In-Reply-To: <9b8a9c8f1001311214q24d521d5tddbf3a44d5a3af93@mail.gmail.com> References: <9b8a9c8f1001311214q24d521d5tddbf3a44d5a3af93@mail.gmail.com> Date: Sun, 31 Jan 2010 21:51:52 +0000 Message-ID: <179b97fb1001311351x11796046j7f6c844730e6d699@mail.gmail.com> From: Brandon Gooch To: Torgeir Hoffmann Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-questions@freebsd.org Subject: Re: iwi and wlan-cloning 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: Sun, 31 Jan 2010 22:16:27 -0000 On Sun, Jan 31, 2010 at 8:14 PM, Torgeir Hoffmann wrote: > Hi all, > > After installing 8.0-release I followed all the howtos on cloning my iwi0 > device to wlan0 to setup > the wireless. > > The manual configuration: > > ifconfig wlan create wlandev iwi0 && wpa_supplicant -c /etc/wpa_supplicant > -i wlan0 & dhclient wlan0 > > works well. > > However, trying to get this done automatically seems not to work: > > wlans_iwi0: not found > ifconfig_wlan0: not found > > if I have rc.conf entries: > > wlans_iwi0 = "wlan0" > ifconfig_wlan0 = "WPA DHCP" > wpa_supplicant_enable="YES" > Do you actually have spaces between the names and values? Try wlans_iwi0="wlan0" ifconfig_wlan0="WPA DHCP" I don't think this is required due to the 'WPA' in the ifconfig parameters: wpa_supplicant_enable="YES" -Brandon