quite often sites limit download speed per ip address or identified user.

Is it possible to use a tool such as wget in order to overcome this limitation?


Ideas would be great.

link|improve this question

79% accept rate
feedback

migrated from stackoverflow.com Jul 4 '10 at 21:16

This question came from our site for professional and enthusiast programmers.

4 Answers

up vote 2 down vote accepted

For wget, the option you are looking for is --bind-address=.

Note that

  1. You need to have a machine with multiple interfaces,

  2. You can only speed up with multiple concurrent downloads, and

  3. If there are per-IP restrictions that are intended to be per-user / per-customer restrictions, then by evading them you are in the wrong, even if you are not breaking the law or an agreement.

link|improve this answer
feedback

Sometimes it is possible to bypass limitations in the server by opening multiple connections.

But these restrictions were probably put there for a reason and by deliberately avoiding them you might be breaking the terms of service for the site. Do this with caution.

link|improve this answer
@Mark: thanks for the reply! – RadiantHex Jul 4 '10 at 21:16
I think opening multiple connections would be the solution in my case, but not sure wget provides this :S – RadiantHex Jul 4 '10 at 21:21
feedback

Take a look at the JDownloader

link|improve this answer
feedback

I have successfully used the "axel" package to speed up downloads - it does not use multiple IP's or multiple users, but will open multiple simultaneous download streams.

The real question is if you're experiencing slow downloads because of a deliberate configuration/policy choice, or because of a failure to optimize the delivery system(s) for maximum speed.

If it's the former, you probably won't be successful in evading the restrictions over the long term. If it's the latter, sometimes you can make up for the site admins' shortcomings.

link|improve this answer
@ thanks! top notch – RadiantHex Jul 5 '10 at 12:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.