From owner-freebsd-wireless@FreeBSD.ORG Wed Jan 23 15:25:42 2013 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 347181DC; Wed, 23 Jan 2013 15:25:42 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-ia0-x22f.google.com (ia-in-x022f.1e100.net [IPv6:2607:f8b0:4001:c02::22f]) by mx1.freebsd.org (Postfix) with ESMTP id EC1CDA39; Wed, 23 Jan 2013 15:25:41 +0000 (UTC) Received: by mail-ia0-f175.google.com with SMTP id r4so4002326iaj.20 for ; Wed, 23 Jan 2013 07:25:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:to:cc:reply-to:subject:in-reply-to :x-mailer:mime-version:content-type; bh=66f9IdhpDYeY8iK6WPmPMdbW7bDe/7wtbiiDAyiVW5c=; b=T951d359XSjkRYx3cxlcE5qdzABmDynNhtlL+Pw4GmTLrl/QLsfVFpQElvAMxPAPrK /uMxodfOW52XHHi9X+Ogge2hA5qVrccGguZeSPhG2Fc8X/LJJT4KdLfOpGzZb1pzl7cd tukWq+FKu1NOxxQT+6xQlYfLzQVkydwXDqDVn1Maz4WRdd6jv0F62EOWacbQ2/9YM/jW JTaiSmYY3QIpyxABG0cCkwSFrn3ah5/o6KZ0v5hpCFPhltA0wPBRQaMsPAJXRAELfxjA X3QuLoKM8A0Lw11d248cNbpWT30+w7rwVMn8tmeQd3w13+XRnDe5j/dtrOUga1Kno1h/ wupQ== X-Received: by 10.42.153.70 with SMTP id l6mr1224158icw.50.1358954741638; Wed, 23 Jan 2013 07:25:41 -0800 (PST) Received: from www.palm.com ([32.141.19.206]) by mx.google.com with ESMTPS id uj6sm14736855igb.4.2013.01.23.07.25.36 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 23 Jan 2013 07:25:40 -0800 (PST) Message-ID: <510000f4.a696320a.521a.2f39@mx.google.com> Date: Wed, 23 Jan 2013 10:25:49 -0500 From: "Adrian Chadd" To: "paranormal" , "Adrian Chadd" Subject: Re: mesh between AR5008 and AR5212 In-Reply-To: <1358952033.2124.33.camel@eva02> X-Mailer: Palm webOS v1.0.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: "freebsd-wireless@freebsd.org" X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Adrian Chadd List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Jan 2013 15:25:42 -0000 Hi, Yes. Mesh isn't an ap mode. Non mesh devices won't see it. Adrian Sent from my Palm Pre on AT&T On Jan 23, 2013 9:40 AM, paranormal <paranormal@isgroup.com.ua> wrote= :=20 I just put out mesh configuration in rc.conf Something like that: AC (I called it ap because it is ap in my usual days) wlans_ath0=3D"wlan0" create_args_wlan0=3D"wlanmode mesh" ifconfig_wlan0=3D"inet 192.168.11.1 netmask 255.255.255.240 meshid mybsd channel 3" Laptop wlans_ath0=3D"wlan0" create_args_wlan0=3D"wlanmode mesh" ifconfig_wlan0=3D"meshid mybsd channel 3 DHCP" # but dhcp didn't worked, and use ifconfig wlan0 inet 192.168.11.2 netmask 255.255.255.240 After reboot I checked sta, it was associated, and I checked mesh (wlan0 list mesh), both hosts have seen each other. What was after that, you have already known. One host (ap) sent packets, another (laptop) was dumb even with arp. Actually I had my mother notebook with windows, and cheapest wifi repeater tenda a3, both devices couldn't see mesh network. Is it normal? Unfortunately I will not be able to test HEAD's code. On Wed, 2013-01-23 at 05:55 -0800, Adrian Chadd wrote: > Hi, >=20 > Please list the commands that you've used? >=20 > And is anything logged in dmesg? >=20 > A lot of mesh fixes are in -HEAD, have you tried that? >=20 >=20 >=20 > Adrian >=20 >=20 > On 23 January 2013 05:11, paranormal <paranormal@isgroup.com.ua>= wrote: > > Today I was trying what mesh is. > > > > I have ap (stable) atheros 5008 and my laptop (stable) atheros= 5212. > > > > Following instruction https://wiki.freebsd.org/WifiMesh > > > > > > both hosts have in rc.conf: > > ifconfig_wlan0=3D"inet 192.168.11.1 netmask 255.255.255.240 meshi= d mybsd > > channel 3" > > > > both sta was ESTAB. > > > > The problem was: > > After some time I was going mad. > > From my ap I can ping my notebook (after hard coding arp), and tc= pdump > > running on my notebook show my echo-request packets, but my lapto= p was > > dumb. Ping from my notebook never ran, ping command ran but witho= ut > > packets... > > > > The same situation with arp. Laptop got ap's arp, but ap never re= ceived > > arp from my laptop. > > > > Any idea?