Sunday 11 February 2018

networking - Test the Speed of a Local Area Network


How can I test the speed of a LAN? I hope there is something baked into Windows to do this, because I am unable to install any third-party products.



Answer



Well you can just look at the network in the control panel and see if the LAN is connected at 10/100/1000 mbit. But that doesn't tell you the whole story. If you want to test the speed between two PCs, you really need a tool to do it. One tool I've used that seems pretty good is 'iperf', it's just a commandline EXE, doesn't require any install. 'ping' will tell you the latency, but not the available bandwidth.


Example usage of iperf:


On one PC run it in 'server' mode: iperf -s


On another PC run it in 'client' mode, and give it the IP of the first PC: iperf -c 12.34.56.67


You may need to use larger packet sizes to get the full speed, try adding -l 64K -w 64K or something.


No comments:

Post a Comment

Where does Skype save my contact's avatars in Linux?

I'm using Skype on Linux. Where can I find images cached by skype of my contact's avatars? Answer I wanted to get those Skype avat...