Go Back   Wireless and Wifi Forums > News > Newsgroups > alt.internet.wireless
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-15-2005, 02:55 PM
njh@despammed.com
Guest
 
Posts: n/a
Default Re: 802.11b specification

I could only find parts of the specs on the IEEE site.

The problem is that my association request fails with reason 18
(required rates aren't supported by the station), even though I believe
that they are. The authentication request went through OK first, so I
must be doing something wrong in the association stage. I've put this
into the rates field:

static const unsigned char eleven_b[] = { 3, 2, 4, 11 };

using this type of code:

frame->u.assoc_req.variable[index++] = sizeof(eleven_b);
memcpy(&frame->u.assoc_req.variable[index], eleven_b,
sizeof(eleven_b));

The beacon packets from the (Cisco) Access Point has 4 (i.e. 2Mb)
defined twice, which is strange. I see { 4, 4, 2, 4, 11 }.

-Nigel


Reply With Quote
  #2 (permalink)  
Old 07-15-2005, 03:11 PM
njh@despammed.com
Guest
 
Posts: n/a
Default Re: 802.11b specification

Ignore the 3, at the start of the array. I sent you the wrong version.
It should, of course, have read:

static const unsigned char eleven_b[] = { 2, 4, 11 };

-Nigel


Reply With Quote
  #3 (permalink)  
Old 07-15-2005, 03:12 PM
njh@despammed.com
Guest
 
Posts: n/a
Default Re: 802.11b specification

Ignore the 3 in the array. I sent you the wrong version. It should, of
course, read:

static const unsigned char eleven_b[] = { 2, 4, 11 };


Reply With Quote
  #4 (permalink)  
Old 07-15-2005, 04:32 PM
Jeff Liebermann
Guest
 
Posts: n/a
Default Re: 802.11b specification

On 15 Jul 2005 06:55:20 -0700, "njh@despammed.com"
<nigel.horne@gmail.com> wrote:

>I could only find parts of the specs on the IEEE site.


Which parts could you *NOT* find?

The beast comes in 4 parts.
- 802.11 which is 1 and 2 Mbits/sec only.
- 802.11b which extends the array to 3 (Breezecom FHSS) Mbits/sec,
5.5 and 11 Mbits/sec.
- 802.11a which again expands the field to include OFDM rates
from 6 to 54Mbits/sec, and PBCC for 22MBits/sec.
- 802.11g which applies 802.11a specifications to 2.4GHz and adds
an 802.11b compatibility mode.

You'll need all 4 to decode all the possible speeds. In addition,
some of the chip vendors have gone off on their own and added
proprietary modes. They usually default to indicating 54Mbits/sec but
are running faster.

>The problem is that my association request fails with reason 18
>(required rates aren't supported by the station), even though I believe
>that they are. The authentication request went through OK first, so I
>must be doing something wrong in the association stage. I've put this
>into the rates field:
>
> static const unsigned char eleven_b[] = { 3, 2, 4, 11 };
>
>using this type of code:
>
>frame->u.assoc_req.variable[index++] = sizeof(eleven_b);
>memcpy(&frame->u.assoc_req.variable[index], eleven_b,
>sizeof(eleven_b));
>
>The beacon packets from the (Cisco) Access Point has 4 (i.e. 2Mb)
>defined twice, which is strange. I see { 4, 4, 2, 4, 11 }.
>
>-Nigel


I'm going to play ignorant and pretend I don't know how to program.
You might want to look at various open source implimentations on the
Linksys web pile to see how it's done. The first thing I do before I
scribble code is to see how the other guys do it and steal as much as
possible. Maybe that's why I'm such a lousy programmist.
http://www1.linksys.com/support/gpl.asp



--
Jeff Liebermann jeffl@comix.santa-cruz.ca.us
150 Felker St #D http://www.LearnByDestroying.com
Santa Cruz CA 95060 AE6KS 831-336-2558

Reply With Quote
Sponsored Links
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Data Transfer Rate for 54Mbps 3com link Nho Whei alt.internet.wireless 7 08-25-2006 09:17 PM
Delay and data throughput on 802.11b WLAN with 50 nodes Andreas alt.internet.wireless 13 11-08-2005 05:47 PM
D-Link DI-624 and 802.11b David W.E. Roberts alt.internet.wireless 4 11-06-2005 06:17 PM
Is there any way we would be able to detect which devices/laptops in a wlan are using 802.11b & which are using 802.11g cards? 802.11b clients in 802.11g wlan avirup_dasgupta@indiatimes.com alt.internet.wireless 6 09-20-2005 05:33 PM
802.11 B&G Marcel Joustra alt.internet.wireless 6 09-14-2005 10:14 PM


All times are GMT. The time now is 01:21 PM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45