GUF-Yocto-jethro-9.0-r7707-0
i.MX6
User Manual
5.2.4 Network Monitoring
iperf
iPerf is a tool for active bandwidth measurement of IP networks. The iPerf user documentation is located
at:
https://iperf.fr/iperf-doc.php#doc
As example, we measure the bandwidth available via the loopback device:
$ iperf -s & iperf -c localhost ; kill $!
iftop
iftop is a tool that shows the bandwidth used on network interfaces. The iftop documentation is located at:
http://www.ex-parrot.com/pdw/iftop/
The tool presents an interactive user interface started with the following command (to stop the tool, hit Q).
$ iftop
tcpdump
tcpdump is a command line packet analyzer. The tcpdump man page is available at:
http://www.tcpdump.org/manpages/tcpdump.1.html
As example, we monitor the traffic on eth0:
$ tcpdump -i eth0
5.2.5 System Tests
ltp
ltp is a testsuite to test the reliability, robustness, and statbility of linux. The LTP getting started guide is
located at:
https://github.com/linux-test-project/ltp/wiki/GettingStarted
As example, we run the filesystem tests:
$ /opt/ltp/runltp -f fs
35