Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
1999 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(20) |
Oct
(10) |
Nov
(19) |
Dec
(55) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2000 |
Jan
(29) |
Feb
(70) |
Mar
(53) |
Apr
(23) |
May
(21) |
Jun
(27) |
Jul
(33) |
Aug
(67) |
Sep
(94) |
Oct
(100) |
Nov
(95) |
Dec
(45) |
2001 |
Jan
(143) |
Feb
(84) |
Mar
(79) |
Apr
(97) |
May
(96) |
Jun
(95) |
Jul
(85) |
Aug
(143) |
Sep
(85) |
Oct
(105) |
Nov
(130) |
Dec
(86) |
2002 |
Jan
(72) |
Feb
(66) |
Mar
(108) |
Apr
(67) |
May
(6) |
Jun
(31) |
Jul
(3) |
Aug
(23) |
Sep
(27) |
Oct
(18) |
Nov
(10) |
Dec
(2) |
2003 |
Jan
(29) |
Feb
(7) |
Mar
(6) |
Apr
(13) |
May
(12) |
Jun
(3) |
Jul
(10) |
Aug
(4) |
Sep
|
Oct
(4) |
Nov
|
Dec
(4) |
2004 |
Jan
(6) |
Feb
(8) |
Mar
(2) |
Apr
(9) |
May
(4) |
Jun
(11) |
Jul
|
Aug
|
Sep
(1) |
Oct
(4) |
Nov
(2) |
Dec
(2) |
2005 |
Jan
(5) |
Feb
(2) |
Mar
|
Apr
|
May
(3) |
Jun
(3) |
Jul
(2) |
Aug
(2) |
Sep
(6) |
Oct
(6) |
Nov
(2) |
Dec
|
2006 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(1) |
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
1
(1) |
2
(1) |
3
(2) |
4
(5) |
5
|
6
(3) |
7
|
8
(3) |
9
(2) |
10
(1) |
11
(1) |
12
|
13
|
14
(2) |
15
(3) |
16
(9) |
17
(2) |
18
|
19
|
20
|
21
(3) |
22
(3) |
23
(1) |
24
(5) |
25
(4) |
26
(1) |
27
|
28
(1) |
29
(2) |
30
(3) |
31
(9) |
|
|
From: Jinyang Li <jinyang@ne...> - 2000-08-16 21:34:15
|
hi there, Has anyone tried to make wavelan and aironet card talk to each other in ad hoc mode? I've tried with my airo and wavelan cards, but am unsuccessful. Specifically, I set both card to ad hoc mode and to be on same channel, e.g. 5. I set the SSID of aironet and ESSID of wavelan card to be the same. (no WEP in airocard) But they could not see each other's packets. I wonder if anybody out there has tried similiar things and would like to share his experiences. :-) Many thanks in advance! jinyang |
From: <breed@al...> - 2000-08-16 21:32:20
|
> Since I am running in ad hoc mode, I think the way to determine that the > node to who I am trying to transmit is gone is to use the Rf layer > transmit failure... correct?? Unfortunately, I don't have the 802.11 spec here, so I may be wrong. (I'm sure I'll be corrected if so...) Before the ping is unicast, you will broadcast an ARP looking for the MAC address of the target. Since the node does not exist, there will be no answer. But, I believe that in adhoc mode broadcasts are not ACKed. And even if they were, an ACK of the broadcast would mean that someone received it, not necessarily the node with the desired IP address. ben |
From: <breed@al...> - 2000-08-16 21:27:39
|
> So basically what you are saying is that the interrupt that is triggered > is either the results of a successful transmission (EV_TX) or failure due > to too many failed transmissions (EV_TXEXC)??? Yes. > Also, what is the meaning of the FID bits in the FID? It seems to me that > the value is 32 bits, the higher end 16 meaning something and the lower > end meaning something else. Yeah, The low 16 bits is the FID identifier, the high 16 bits is the length of the packet, or zero if the FID is not in use. I need the packet length to keep some stats up to date. > What I am thinking about doing here is possibly adding an array to the > driver where I could link ip addresses with the FIDs, so that when a > packet is assigned to an FID, I assign the destination address of that > packet to the array position corresponding to that FID. That way, when a > EV_TXEXC event happens, I can determine to which destination that packet > failed.. does this sound good? Yep, the array just has to be of size MAX_FIDS. And you can just shadow the fids[] array. ben |
From: Matthew Impett <mimpett@Glue.umd.edu> - 2000-08-16 21:14:50
|
On Wed, 16 Aug 2000, Jim Veneskey wrote: > > When the card receives a data packet to send, it will retry the send up to > > (Long/Short)RetryLimit. Is this EV_TXEXC event a notification of one > > failed retransmission or the whole RetryLimit failure? Also, how come this > > event isn't generated when I try to ping an ipaddress which does not > > exist?? I would assume this would be a transmission error also. > > You're confusing a lowlevel Rf layer transmit failure with an upper layer > ICMP failure. > > If you ping a non-existant IP address wirelessly - the ping packet goes out to the > AP and is ack'd by the AP as received. REGARDLESS of whether or not the endpoint I forgot to mention that I am running in ad hoc mode, and I also am only trying to send a packet one hop. > you are pinging actually exists or not. > As far as the client radio is concerned - it's job is done as soon as it hands the > icmp packet over to the AP - and the AP consider's it's job done as soon as it > spits the icmp packet out over the wire. Since I am running in ad hoc mode, I think the way to determine that the node to who I am trying to transmit is gone is to use the Rf layer transmit failure... correct?? Matt > > Jim > > -- > | | Jim Veneskey > :|: :|: Software Test Engineer > :|||: :|||: 3875 Embassy Pkwy, Akron OH 44334 > .:|||||||:..:|||||||:. Email: jvene@... > |
From: Matthew Impett <mimpett@Glue.umd.edu> - 2000-08-16 21:12:17
|
On Wed, 16 Aug 2000 breed@... wrote: > > > The transmission refers to the transmission of an 802.11 packet to the AP > or other 802.11 node in adhoc. To transmit a packet we need a buffer to > stick the packet in on the card. This buffer is called a fid. I > preallocate a few and reuse them. Once the packet is copied to a FID, I > tell the card to transmit it. It does its thing until the card has been > transmitted, it arrived at the next hop in the 802.11 layer or it failed. > Failure could be because of too many retries, not being associated to an > AP, WEP mismatches, etc. Either way, an interrupt is triggered. I find > out which FID was successfully or unsuccessfully transmitted, I update the > stats and mark the FID as usable again. So basically what you are saying is that the interrupt that is triggered is either the results of a successful transmission (EV_TX) or failure due to too many failed transmissions (EV_TXEXC)??? Also, what is the meaning of the FID bits in the FID? It seems to me that the value is 32 bits, the higher end 16 meaning something and the lower end meaning something else. What I am thinking about doing here is possibly adding an array to the driver where I could link ip addresses with the FIDs, so that when a packet is assigned to an FID, I assign the destination address of that packet to the array position corresponding to that FID. That way, when a EV_TXEXC event happens, I can determine to which destination that packet failed.. does this sound good? > > The reason the ping does not produce an error is that you end up > broadcasting (successfully) ARPs. The fact that they are unanswered is > meaningless to 802.11. ok... this makes sense, thanks for the clarification. Matt > > ben > > > Matthew Impett <mimpett@...>@csl.cse.ucsc.edu on 08/16/2000 > 12:33:26 PM > > Sent by: aironet-admin@... > > > To: aironet@... > cc: > Subject: [Aironet] meaning of card generated interrupt > > > > I am using Benjamin Reed's aironet driver and I have a question about > something in the airo_interrupt function. I have noticed that when a > transmission fails, the card generates an interrupt of type > EV_TXEXC. However, I am not sure what sort of transmission failure this > represents. > > When the card receives a data packet to send, it will retry the send up to > (Long/Short)RetryLimit. Is this EV_TXEXC event a notification of one > failed retransmission or the whole RetryLimit failure? Also, how come this > event isn't generated when I try to ping an ipaddress which does not > exist?? I would assume this would be a transmission error also. > > What I ideally want to do is put a hook into the driver which > would determine when at attempted send has failed RetryLimit times, then > determine the destination to which this send failed, and then pass this > information up to a user space process. > > Finally, I am curious as the what the FIDs are and what they are used for > in the driver. > > Thanks a lot, > > Matthew Impett > <mimpett@...> > > > _______________________________________________ > Aironet mailing list - Aironet@... > http://csl.cse.ucsc.edu/mailman/listinfo/aironet > > > > |
From: Jim Veneskey <jvene@bi...> - 2000-08-16 20:48:38
|
> When the card receives a data packet to send, it will retry the send up to > (Long/Short)RetryLimit. Is this EV_TXEXC event a notification of one > failed retransmission or the whole RetryLimit failure? Also, how come this > event isn't generated when I try to ping an ipaddress which does not > exist?? I would assume this would be a transmission error also. You're confusing a lowlevel Rf layer transmit failure with an upper layer ICMP failure. If you ping a non-existant IP address wirelessly - the ping packet goes out to the AP and is ack'd by the AP as received. REGARDLESS of whether or not the endpoint you are pinging actually exists or not. As far as the client radio is concerned - it's job is done as soon as it hands the icmp packet over to the AP - and the AP consider's it's job done as soon as it spits the icmp packet out over the wire. Jim -- | | Jim Veneskey :|: :|: Software Test Engineer :|||: :|||: 3875 Embassy Pkwy, Akron OH 44334 .:|||||||:..:|||||||:. Email: jvene@... |
From: <breed@al...> - 2000-08-16 20:46:18
|
The transmission refers to the transmission of an 802.11 packet to the AP or other 802.11 node in adhoc. To transmit a packet we need a buffer to stick the packet in on the card. This buffer is called a fid. I preallocate a few and reuse them. Once the packet is copied to a FID, I tell the card to transmit it. It does its thing until the card has been transmitted, it arrived at the next hop in the 802.11 layer or it failed. Failure could be because of too many retries, not being associated to an AP, WEP mismatches, etc. Either way, an interrupt is triggered. I find out which FID was successfully or unsuccessfully transmitted, I update the stats and mark the FID as usable again. The reason the ping does not produce an error is that you end up broadcasting (successfully) ARPs. The fact that they are unanswered is meaningless to 802.11. ben Matthew Impett <mimpett@...>@csl.cse.ucsc.edu on 08/16/2000 12:33:26 PM Sent by: aironet-admin@... To: aironet@... cc: Subject: [Aironet] meaning of card generated interrupt I am using Benjamin Reed's aironet driver and I have a question about something in the airo_interrupt function. I have noticed that when a transmission fails, the card generates an interrupt of type EV_TXEXC. However, I am not sure what sort of transmission failure this represents. When the card receives a data packet to send, it will retry the send up to (Long/Short)RetryLimit. Is this EV_TXEXC event a notification of one failed retransmission or the whole RetryLimit failure? Also, how come this event isn't generated when I try to ping an ipaddress which does not exist?? I would assume this would be a transmission error also. What I ideally want to do is put a hook into the driver which would determine when at attempted send has failed RetryLimit times, then determine the destination to which this send failed, and then pass this information up to a user space process. Finally, I am curious as the what the FIDs are and what they are used for in the driver. Thanks a lot, Matthew Impett <mimpett@...> _______________________________________________ Aironet mailing list - Aironet@... http://csl.cse.ucsc.edu/mailman/listinfo/aironet |
From: Matthew Impett <mimpett@Glue.umd.edu> - 2000-08-16 19:33:29
|
I am using Benjamin Reed's aironet driver and I have a question about something in the airo_interrupt function. I have noticed that when a transmission fails, the card generates an interrupt of type EV_TXEXC. However, I am not sure what sort of transmission failure this represents. When the card receives a data packet to send, it will retry the send up to (Long/Short)RetryLimit. Is this EV_TXEXC event a notification of one failed retransmission or the whole RetryLimit failure? Also, how come this event isn't generated when I try to ping an ipaddress which does not exist?? I would assume this would be a transmission error also. What I ideally want to do is put a hook into the driver which would determine when at attempted send has failed RetryLimit times, then determine the destination to which this send failed, and then pass this information up to a user space process. Finally, I am curious as the what the FIDs are and what they are used for in the driver. Thanks a lot, Matthew Impett <mimpett@...> |
From: Jean Tourrilhes <jt@bo...> - 2000-08-16 01:12:09
|
Bruce Schulte wrote : > hey! we dropped cisco and went back to the big LU (Wavelan)... [...] > hey, Cisco really pissed us off with there "new improved aironets" ! The Wavelan IEEE has been 30 mW right from the start, so Aironet just step back to the level of the competition. In other words, I find your complain about Tx power a bit unfair, because nobody sells 100 mW anymore, and Cisco did improve their sensitivity in return. For price and availability, that's always a bit more contentious, but there are vendors much worse than Aironet/Cisco, and every vendor (even Lucent) has its weakness :-( Anyway, the important is that you enjoy what you have. So tell us how much you are happy ;-) Jean |