I have a direct connection setup between my NAS and server with two gigabit links bonded in mode 0. I also have a single gigabit link from my server to my network. I want to test how the bond is performing in mode 0.
netstat -s | grep 'segments retransmited' | awk '{print $1}'
-> 21983
netstat -s | grep 'segments send out' | awk '{print $1}'
-> 91874454
21983/91874454 = .000239272
Is this considered high? There is a lot of traffic between this server and the internet.
Also, is there a better way to test packet loss on just the direct connection between my NAS and server? ethtool
stats are not available because the driver is not supported. Thanks.