Advertisement
Guest User

Untitled

a guest
May 31st, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. Speed and CPU usage test:
  2. TEST1)
  3. Open two ssh sessions: a) and b)
  4. a)
  5. while true; do echo "Hit [CTRL+C] to stop!"; speedtest-cli --simple; done
  6.  
  7. b)
  8. sudo htop # see on CPU usage by IRQ/kworker handlers
  9.  
  10. TEST2)
  11. Open two ssh sessions: a) and b)
  12. a)
  13. while true; do echo "Hit [CTRL+C] to stop!"; wget -O /dev/null --report-speed=bits http://download.thinkbroadband.com/100MB.zip ; done
  14.  
  15. b)
  16. sudo htop # see on CPU usage by IRQ/kworker handlers
  17.  
  18. TEST3) For TWO modems connected. NOT TESTED!
  19. Connect 2 modems.
  20. Setup each of them with
  21. sudo sakis3g --interactive
  22.  
  23. See IP-adresses of modems (ppp0 and ppp1 interfaces)
  24. sudo ifconfig -a
  25.  
  26. Open three ssh sessions: a), b) and c)
  27. a)
  28. while true; do echo "Hit [CTRL+C] to stop!"; speedtest-cli --source IP_OF_PPP0 --simple; done
  29. b)
  30. while true; do echo "Hit [CTRL+C] to stop!"; speedtest-cli --source IP_OF_PPP1 --simple; done
  31. c)
  32. sudo htop # see on CPU usage by IRQ/kworker handlers
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement