vote up -1 vote down star
1

i want to write a simple form in VC# that would tell me the following

  • Am 1 connected or not connected to the internet

  • What speed am i connected with (56Kbps, 1.5MBps, e.t.c) not L.A.N

  • How much Download \ Upload bandwidth is being utilized like download bwdth utilized is 30 Kbps and upload bwdth utilized is 40Kbps.

how to do it, what do i need to know

flag

67% accept rate
1  
Is there a question here? – Lazarus Sep 1 at 12:19

2 Answers

vote up 0 vote down

Please see the link below

http://asimsajjad.blogspot.com/2009/08/calculating-network-bandwidth-speed-in.html

Hope that will help you.

link|flag
vote up 0 vote down

1) You will need a known good server(s) that responds to your connection request or ping. You could open a connection on port 80 (HTTP) to google for example. If it succeeds, you are connected to the Internet and your DNS is working.

2) This is hard unless you can guarantee that your traffic is the only traffic on your ISP connection and your ISP has the capacity to carry your traffic. It seems that the best way would be to pull some data for a while and take the maximum rate. You would also need to push some data if you want to know the full connection capability...

3) MRTG was made for this mrtg.org There would be no other way to get this information reliably without installing a monitor on your link somewhere. If you check the link by passing data as in 2 above, it will affect the data was taking up the remaining bandwidth and your results will not be accurate.

I suggest you write a form that uses one of the existing bandwidth services like speedtest.net.

link|flag
To whomever voted me down, I would appreciate a comment so I can improve my responses in the future. – Scott Lundberg Sep 1 at 12:49

Your Answer

Get an OpenID
or

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