I have a problem to determine where is my LAN’s bottleneck. Copying files between two computers should be faster. Let’s check it out.
To mesure the speed we will prepare a client-server connectionL
- Preparation
Install netcat on machines that will take part in the tests. On a OpenWRT router we can install it through a package manager.
opkg update
opkg install bash netcat
- Server
nc -l -p 1122 > /dev/null
- Client
dd if=/dev/zero bs=10000 count=1 | nc 192.168.1.3 1122
- Results
1 2 3 4 |
|