Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

does anyone know a possibility to simulate a low bandwidth on android phones (i.e. EDGEor G3) while connected to WIFI?

Is there a app for this?

It it possible to do something like this ( http://stackoverflow.com/a/130465 ) on android devices?

Thanks in advance for any tips.

Edit: I don't want to use the simulator. I need it to do reproducable performance measurements for my bachelor's thesis. Using UMTS is just not reproducable enough that's why im looking for something to simulate it.

share|improve this question
You could probably use VPN to connect to a throttled computer. :/ – Eliasdx Jan 1 '12 at 12:45

5 Answers

you can limit bandwidth in Android emulator.

eg:

emulator -netspeed gsm

more:

http://developer.android.com/guide/developing/devices/emulator.html#netspeed

share|improve this answer
I know, but using the simulator is not an option (see my edit). – Felix Jan 1 '12 at 21:50
share|improve this answer

You can write a wrapper class that fetches the whole content and returns that data with delays and only in small chunks.

share|improve this answer
A wrapper class for what? The HTTP client? – Felix Jan 1 '12 at 21:45
yes. either that or you write a helper class that in production code just delivers the data from the Httpclient and for debugging purposes delivers "slows" data down. might be easier to develop since you only would need to implement one function ( productin and debugging ). – P.Melch Jan 1 '12 at 22:22
up vote 1 down vote accepted

I solved the problem by slowing down the network of my PC with network simulator. Then I created a virtual wifi with win 7 and connected my phone with it.

share|improve this answer
Which program did you use? – Igor Ganapolsky Oct 28 '12 at 19:41
1  
It is called network simulator: akmalabs.com/netsim.php – Felix Jan 5 at 10:43
If you're interested, you can also read my bachelor thesis (in German): db.tt/7cunObsm – Felix Jan 5 at 10:46

You can use followed 2 applications for your purposes:

  • Use Connectify application to create virtual WiFi AP on your PC. Connectify link It will give you ability to manage traffic over virtual adapter.
  • Download DummyNet open source program and install service to your virtual AP dowload dummynet

Now you can connect with android to your virtual WiFi AP and manage BW + packet loss + latency by using some scripts (single batch file *.bat). Here is example:

cd C:\ipfw3-2012\binary
@echo on
@set CYGWIN=nodosfilewarning

@ipfw -q flush
@ipfw -q pipe flush

set download="80Kbit/s"

set srcIp=111.111.222.222

ipfw pipe 1 config bw %download%

ipfw add pipe 1 tcp from any to any in

ipfw -c show
ipfw pipe show

It works great. Here is print screen:

enter image description here enter image description here

share|improve this answer
How do you run that script? – Igor Ganapolsky Oct 27 '12 at 22:50
1  
single batch file *.bat – Maxim Shoustin Oct 27 '12 at 23:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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