All of lore.kernel.org
 help / color / mirror / Atom feed
* Mesh HWMP: PREQ node queue full
@ 2011-07-28  6:51 Baruch Siach
  2011-07-28 18:47 ` Javier Cardona
  0 siblings, 1 reply; 4+ messages in thread
From: Baruch Siach @ 2011-07-28  6:51 UTC (permalink / raw)
  To: linux-wireless; +Cc: Javier Cardona

Hi linux-wireless list,

I'm testing the mesh capabilities (specifically, MPP) of the latest kernel 
(3.0). My driver is ath9k on AR9390 chip. My two APs are configured 
identically as follows:

----- mesh.sh start
#!/bin/sh

iw dev wlan1 interface add mesh0 type mp mesh_id wavmesh
ip link set mesh0 addr $(cat /etc/network/mesh0.mac)

brctl addbr br0
brctl addif br0 eth0
brctl addif br0 mesh0

ifconfig mesh0 down up
ifconfig eth0 0.0.0.0
ifconfig br0 up
----- mesh.sh end

When transferring traffic from a machine behind one eth0 to a machine behind 
the other eth0, I see the following on the console (of both APs, only 
different MACs):

Mesh HWMP: sending PREP to 02:92:ca:39:48:72
Mesh HWMP: sending PREQ to 02:92:ca:39:48:72
Mesh HWMP: received PREP from 02:92:ca:39:48:72
Mesh HWMP: received PREQ from 02:92:ca:39:48:72
Mesh HWMP: PREQ is for us
Mesh HWMP: replying to the PREQ
Mesh HWMP: sending PREP to 02:92:ca:39:48:72
mesh_queue_preq: 40 callbacks suppressed
Mesh HWMP: PREQ node queue full
Mesh HWMP: PREQ node queue full
Mesh HWMP: PREQ node queue full
Mesh HWMP: PREQ node queue full
Mesh HWMP: PREQ node queue full
Mesh HWMP: PREQ node queue full
Mesh HWMP: PREQ node queue full
Mesh HWMP: PREQ node queue full
Mesh HWMP: PREQ node queue full
Mesh HWMP: PREQ node queue full

Any suggestion?

baruch

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch@tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Mesh HWMP: PREQ node queue full
  2011-07-28  6:51 Mesh HWMP: PREQ node queue full Baruch Siach
@ 2011-07-28 18:47 ` Javier Cardona
  2011-07-29  7:17   ` Baruch Siach
  0 siblings, 1 reply; 4+ messages in thread
From: Javier Cardona @ 2011-07-28 18:47 UTC (permalink / raw)
  To: Baruch Siach; +Cc: linux-wireless

Baruch,

Thanks for reporting.  Is 02:92:ca:39:48:72 the address of the mesh
gate or the address of the external proxied node?

Javier

On Wed, Jul 27, 2011 at 11:51 PM, Baruch Siach <baruch@tkos.co.il> wrote:
> Hi linux-wireless list,
>
> I'm testing the mesh capabilities (specifically, MPP) of the latest kernel
> (3.0). My driver is ath9k on AR9390 chip. My two APs are configured
> identically as follows:
>
> ----- mesh.sh start
> #!/bin/sh
>
> iw dev wlan1 interface add mesh0 type mp mesh_id wavmesh
> ip link set mesh0 addr $(cat /etc/network/mesh0.mac)
>
> brctl addbr br0
> brctl addif br0 eth0
> brctl addif br0 mesh0
>
> ifconfig mesh0 down up
> ifconfig eth0 0.0.0.0
> ifconfig br0 up
> ----- mesh.sh end
>
> When transferring traffic from a machine behind one eth0 to a machine behind
> the other eth0, I see the following on the console (of both APs, only
> different MACs):
>
> Mesh HWMP: sending PREP to 02:92:ca:39:48:72
> Mesh HWMP: sending PREQ to 02:92:ca:39:48:72
> Mesh HWMP: received PREP from 02:92:ca:39:48:72
> Mesh HWMP: received PREQ from 02:92:ca:39:48:72
> Mesh HWMP: PREQ is for us
> Mesh HWMP: replying to the PREQ
> Mesh HWMP: sending PREP to 02:92:ca:39:48:72
> mesh_queue_preq: 40 callbacks suppressed
> Mesh HWMP: PREQ node queue full
> Mesh HWMP: PREQ node queue full
> Mesh HWMP: PREQ node queue full
> Mesh HWMP: PREQ node queue full
> Mesh HWMP: PREQ node queue full
> Mesh HWMP: PREQ node queue full
> Mesh HWMP: PREQ node queue full
> Mesh HWMP: PREQ node queue full
> Mesh HWMP: PREQ node queue full
> Mesh HWMP: PREQ node queue full
>
> Any suggestion?
>
> baruch
>
> --
>                                                     ~. .~   Tk Open Systems
> =}------------------------------------------------ooO--U--Ooo------------{=
>   - baruch@tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
>



-- 
Javier Cardona
cozybit Inc.
http://www.cozybit.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Mesh HWMP: PREQ node queue full
  2011-07-28 18:47 ` Javier Cardona
@ 2011-07-29  7:17   ` Baruch Siach
  2011-08-03 16:34     ` Javier Cardona
  0 siblings, 1 reply; 4+ messages in thread
From: Baruch Siach @ 2011-07-29  7:17 UTC (permalink / raw)
  To: Javier Cardona; +Cc: linux-wireless

Hi Javier,

On Thu, Jul 28, 2011 at 11:47:44AM -0700, Javier Cardona wrote:
> Thanks for reporting.  Is 02:92:ca:39:48:72 the address of the mesh
> gate or the address of the external proxied node?

This is the MAC address of the mesh gate (i.e. the other AP). What is 
"external proxied node"?

baruch

> On Wed, Jul 27, 2011 at 11:51 PM, Baruch Siach <baruch@tkos.co.il> wrote:
> > Hi linux-wireless list,
> >
> > I'm testing the mesh capabilities (specifically, MPP) of the latest kernel
> > (3.0). My driver is ath9k on AR9390 chip. My two APs are configured
> > identically as follows:
> >
> > ----- mesh.sh start
> > #!/bin/sh
> >
> > iw dev wlan1 interface add mesh0 type mp mesh_id wavmesh
> > ip link set mesh0 addr $(cat /etc/network/mesh0.mac)
> >
> > brctl addbr br0
> > brctl addif br0 eth0
> > brctl addif br0 mesh0
> >
> > ifconfig mesh0 down up
> > ifconfig eth0 0.0.0.0
> > ifconfig br0 up
> > ----- mesh.sh end
> >
> > When transferring traffic from a machine behind one eth0 to a machine behind
> > the other eth0, I see the following on the console (of both APs, only
> > different MACs):
> >
> > Mesh HWMP: sending PREP to 02:92:ca:39:48:72
> > Mesh HWMP: sending PREQ to 02:92:ca:39:48:72
> > Mesh HWMP: received PREP from 02:92:ca:39:48:72
> > Mesh HWMP: received PREQ from 02:92:ca:39:48:72
> > Mesh HWMP: PREQ is for us
> > Mesh HWMP: replying to the PREQ
> > Mesh HWMP: sending PREP to 02:92:ca:39:48:72
> > mesh_queue_preq: 40 callbacks suppressed
> > Mesh HWMP: PREQ node queue full
> > Mesh HWMP: PREQ node queue full
> > Mesh HWMP: PREQ node queue full
> > Mesh HWMP: PREQ node queue full
> > Mesh HWMP: PREQ node queue full
> > Mesh HWMP: PREQ node queue full
> > Mesh HWMP: PREQ node queue full
> > Mesh HWMP: PREQ node queue full
> > Mesh HWMP: PREQ node queue full
> > Mesh HWMP: PREQ node queue full
> >
> > Any suggestion?
> >
> > baruch

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch@tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Mesh HWMP: PREQ node queue full
  2011-07-29  7:17   ` Baruch Siach
@ 2011-08-03 16:34     ` Javier Cardona
  0 siblings, 0 replies; 4+ messages in thread
From: Javier Cardona @ 2011-08-03 16:34 UTC (permalink / raw)
  To: Baruch Siach; +Cc: linux-wireless

On Fri, Jul 29, 2011 at 12:17 AM, Baruch Siach <baruch@tkos.co.il> wrote:
> Hi Javier,
>
> On Thu, Jul 28, 2011 at 11:47:44AM -0700, Javier Cardona wrote:
>> Thanks for reporting.  Is 02:92:ca:39:48:72 the address of the mesh
>> gate or the address of the external proxied node?
>
> This is the MAC address of the mesh gate (i.e. the other AP).

We'll look into it.

> What is "external proxied node"?

The node outside the mesh you were trying to reach.

Javier

> baruch
>
>> On Wed, Jul 27, 2011 at 11:51 PM, Baruch Siach <baruch@tkos.co.il> wrote:
>> > Hi linux-wireless list,
>> >
>> > I'm testing the mesh capabilities (specifically, MPP) of the latest kernel
>> > (3.0). My driver is ath9k on AR9390 chip. My two APs are configured
>> > identically as follows:
>> >
>> > ----- mesh.sh start
>> > #!/bin/sh
>> >
>> > iw dev wlan1 interface add mesh0 type mp mesh_id wavmesh
>> > ip link set mesh0 addr $(cat /etc/network/mesh0.mac)
>> >
>> > brctl addbr br0
>> > brctl addif br0 eth0
>> > brctl addif br0 mesh0
>> >
>> > ifconfig mesh0 down up
>> > ifconfig eth0 0.0.0.0
>> > ifconfig br0 up
>> > ----- mesh.sh end
>> >
>> > When transferring traffic from a machine behind one eth0 to a machine behind
>> > the other eth0, I see the following on the console (of both APs, only
>> > different MACs):
>> >
>> > Mesh HWMP: sending PREP to 02:92:ca:39:48:72
>> > Mesh HWMP: sending PREQ to 02:92:ca:39:48:72
>> > Mesh HWMP: received PREP from 02:92:ca:39:48:72
>> > Mesh HWMP: received PREQ from 02:92:ca:39:48:72
>> > Mesh HWMP: PREQ is for us
>> > Mesh HWMP: replying to the PREQ
>> > Mesh HWMP: sending PREP to 02:92:ca:39:48:72
>> > mesh_queue_preq: 40 callbacks suppressed
>> > Mesh HWMP: PREQ node queue full
>> > Mesh HWMP: PREQ node queue full
>> > Mesh HWMP: PREQ node queue full
>> > Mesh HWMP: PREQ node queue full
>> > Mesh HWMP: PREQ node queue full
>> > Mesh HWMP: PREQ node queue full
>> > Mesh HWMP: PREQ node queue full
>> > Mesh HWMP: PREQ node queue full
>> > Mesh HWMP: PREQ node queue full
>> > Mesh HWMP: PREQ node queue full
>> >
>> > Any suggestion?
>> >
>> > baruch
>
> --
>                                                     ~. .~   Tk Open Systems
> =}------------------------------------------------ooO--U--Ooo------------{=
>   - baruch@tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
>



-- 
Javier Cardona
cozybit Inc.
http://www.cozybit.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-08-03 16:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-28  6:51 Mesh HWMP: PREQ node queue full Baruch Siach
2011-07-28 18:47 ` Javier Cardona
2011-07-29  7:17   ` Baruch Siach
2011-08-03 16:34     ` Javier Cardona

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.