|
How would I setup my LinkSys WRT54GS v7 with dd-WRT installed on so that I can limit the download/upload speed of each client over the wireless network? (I don't want any guys to be able to download more than 50kBps).
Started by Phuong Nguyen on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
You can use tc rate limiting, by running the following commands on your router (see here for details):
tc qdisc add dev $DEV root handle 1: cbq avpkt 1000 bandwidth 10mbit tc class add dev $DEV parent 1: classid 1:1 cbq rate 400kbit allot 1500 ....
|
|
I subscribed in a 1Mbps broadband internet (data only). The provider said that customers would only get 60% of it which is approximately 600kbps of the 1Mbps, which is enough for me. But I've been observing my download speed and it is limited to only ...
Started by Kaile on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
Running a speed....
As an example, I have a 10mbps: If you understand the bit vs byte issue, then make sure the speed readings you're getting are correct.
The bandwidth jump initially beyond the limit before the ISP caps the speed.
|
|
Hi
I have multiple internet service providers (wireless broadband, fixed dial up and
office dedicated line).
I find the Speed Limiter not suitable for my use.
My Wireless Broadband can reach speed up to 3Mbps.
My fixed dial up line can reach speed to ...
Started by jimlohwc on
, 12 posts
by 4 people.
Answer Snippets (Read the full thread at newsbin):
Their results
seem to test the speed but....
Hi Quade
I normally use http://www.speedtest.net to test my connection speed.
Sitting behind a router, all you see if interface speed, not speed of the actual connection to the net.
|
Ask your Facebook Friends
|
I'm trying to optimize several bottlenecks on an application which is supposed to run on a really wide range of CPUs and architectures (some of them very close to embeded devices).
The results of my profiler, however, aren't really significant because...
Started by Vicent Marti on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It's a common misconception that you.
Are all significant factors in many applications.
L1/L2 cache size, memory bus speed, memory speed/latency, hard drive speed, etc.
That can (usually) affect things.
|
|
I'm getting performance problems when LIMIT ing a mysql SELECT with a large offset:
select * from table limit m, n;
If the offset m is, say, larger than 1,000,000, the operation is very slow.
I do have to use " limit m, n " ; I can't use something like...
Started by ZA on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Join (select id from table order by whatever limit m, n) B on A.id = B.id order by A.whatever.
|
|
I'm doing some form in Zend Framework for file upload on "Apache friends - xampp" server 1.7.1 on Ubuntu 9.10.
My problem is that I what to add progress bar for this upload and since xampp server is on my localhost, file uploads are very fast. As a result...
Started by Marcin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Be mod_cband: http://codee.pl/cband.html
Although they usually refer to download-speed, the limitations :
Firefox plugin to simulate slow internet connection or limit bandwidth? Network tools that simulate.
|
|
Hello,
I just bought an Ethernet hard drive. Everything works, but not as I expected.
When I copy a file with this hard drive, only 50% of the network bandwidth is used. As my computer only handles 100 Mbps network speed, the transfer speed is about 5...
Started by Savageman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Low end.
To the router, 5.5 MB is very respectable speed, close to the theoretical maximum (which is 6.75MB/s).
|
|
Speed limits ? What's the speed limit on a 3laned A road? I thought it was 70 a it was 3lanes Anyone know?
Started by Scott on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at yahoo):
If there is no central....
Reservation, the speed limit, unless designated otherwise, is 70mph for light vehicles, and 50mph for LGV's, then it's a dual-carriageway and the speed limit is 70mph (unless signs dictate otherwise).
|
|
Basically I'd like to know if it's possible to speed up my server or not by using caching like squid, checking for possible errors in configuration, optimizing various server software parameters, etc.
Is it possible to predict time to serve say 1MB of...
Started by Evgeny on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
When you're dealing with the web, it's usually not the speed of an individual request that matters.
|
|
So, I'm using my ssh tunneling to download some content which is blocked by my office. But, I don't want the admin to notice it, therefore I want to limit the connection to, eg: 20KB/s.
How can I do that? FYI: -I'm using DownThemAll to download the content...
Started by silent on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
For completeness, users running Windows can do.
For example:
trickle -d 20 firefox
That will set a download limit of 20 KB/s.
Running trickle to launch Firefox with a download limit (see man trickle ).
|