From: Richard Marzan <richardmarzan@optonline.net>
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] Wireless: Limit rate to strengthen connection?
Date: Thu, 27 Mar 2008 20:42:27 -0400 [thread overview]
Message-ID: <1206664947.6355.16.camel@localhost> (raw)
In-Reply-To: <49bf44f10803261952u517d87ecv4052dfa8175df3dd@mail.gmail.com>
On Wed, 2008-03-26 at 19:52 -0700, Grant wrote:
> > > > > > I'm trying to strengthen a wireless connection that spans about 150
> > > > > > feet and has to go through about 5 walls. I bought two of these:
> > > > > >
> > > > > > http://www.newegg.com/Product/Product.aspx?Item=N82E16833164110
> > > > > >
> > > > > > for either end of the connection, but I'm having trouble making it
> > > > > > work well. I've noticed the connection will be perfect for a short
> > > > > > time, but then disappear. When watching iwconfig during this process,
> > > > > > it looks like the connection is good when on a low rate, but when it
> > > > > > goes to 54 Mbps it falls apart.
> > > > > >
> > > > > > Should limiting the rate solve this problem? If so, how can I do
> > > > > > that? I'm using hostapd on the AP and wpa_supplicant on the client.
> > > > > >
> > > > > > - Grant
> > > > >
> > > > > Grant,
> > > > >
> > > > > Yes, lowering the rate to a "slower" speed will help greatly. The lower
> > > > > rates use less compression and modulation... less complex wave forms
> > > > > better connects over long hauls.
> > > > >
> > > > > The antennas look very good, but what's driving them? I use and whole
> > > > > heartedly endorse SENAO products and have had very good luck with these
> > > > > models: ECB-3220 (400 mw) or 2611CB3 PLUS (200 mw) at:
> > > > > http://www.wlansolution.com. Either unit with the high gain antennas you
> > > > > have, will penetrate what you stated and probably go pretty high on the
> > > > > speed scale doing it too.
> > > >
> > > > I'm using a Netgear PCI adapter on the AP and an Edimax USB adapter on
> > > > the client. Do you know how I can limit the rate? Should it be done
> > > > on the Gentoo AP or the client?
> > > >
> > > > - Grant
> > >
> > > I use wireless-tools from portage. In it is iwconfig. A simple man iwconfig
> > > will show you what you need. Other thing you could do is configure the
> > > Wireless AP for a fixed rate... works for me.
> >
> > I found this:
> >
> > rate_wlan0=( "5.5M" )
> >
> > which isn't documented in net.wireless, but it doesn't seem to have
> > any affect. I've tried it on the router and the client which uses
> > wpa_supplicant. I still see the rate on the client fluctuate all the
> > way up to 54 Mb/s in the output from iwconfig. The router's rate is
> > always reported as 0 kb/s.
> >
> > - Grant
>
> It appears 'iwconfig wlan0 rate 11M' works (at least as far as the
> output from iwconfig is concerned) but how can I set /etc/conf.d/net
> to always use this rate?
>
> - Grant
The best way I found to do this is to just write your own script and run
it at the default runlevel. write a script called wireless-up save it in
your /root directory. Then in /etc/conf.d/local.start add the script
name to the list: /root/wireless-up. Make sure the script is executable
with chmod 666 /root/wireless-up. Here is what mine looks like. I laugh
when I read this thing that I call a script. I'll be upgrading this in
the future but for now maybe someone has a better idea and/or script.
#!/bin/bash
DATE=`date +%m_%d_%Y`
ifconfig wlan0 up || "echo wlan up failed"
iwconfig wlan0 essid ACCESSPOINTNAME || "echo setting essid failed"
iwconfig wlan0 mode Managed || echo "setting mode to managed failed"
iwconfig wlan0 key restricted YOURKEYHERE || echo "key failed
verification"
dhclient wlan0 || echo "wlan0 failed to receive dhcp request response"
# if [ $DATE -ne `date +%m_%d_%Y -r /tmp/.wireless.*
rm /tmp/.wireless.*
iwconfig >> /tmp/.wireless.$DATE
exit 0
--
gentoo-user@lists.gentoo.org mailing list
next prev parent reply other threads:[~2008-03-28 0:20 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-26 20:53 [gentoo-user] Wireless: Limit rate to strengthen connection? Grant
2008-03-26 21:14 ` Jerry McBride
2008-03-26 21:21 ` Grant
2008-03-26 22:02 ` Jerry McBride
2008-03-27 2:44 ` Grant
2008-03-27 2:52 ` Grant
2008-03-28 0:42 ` Richard Marzan [this message]
2008-03-28 18:02 ` Florian Philipp
2008-03-28 18:08 ` Florian Philipp
2008-04-18 15:26 ` Aleksey V. Kunitskiy
2008-03-27 21:21 ` Grant
2008-03-30 23:48 ` Grant
2008-03-26 21:15 ` Mark Knecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1206664947.6355.16.camel@localhost \
--to=richardmarzan@optonline.net \
--cc=gentoo-user@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox