Use shell scripts to monitor network card Traffic

Source: Internet
Author: User

I suddenly wanted to monitor the network card Traffic in Linux and didn't want to use cacti. I thought it was very troublesome to Configure SNMP. Ready-made tools seem to be useless. Decide to write a script by yourself.

Click (Here) Fold or open

  1. #! /Bin/bash
  2. Rx1 = $ (ifconfig $1 | grep "RX bytes" | awk '{print $2}' | awk-F: '{print $2 }')
  3. Sleep 1
  4. Rxa = $ ($ rx1/1000 ))
  5. Rx2 = $ (ifconfig eth0 | grep "RX bytes" | awk '{print $2}' | awk-F: '{print $2 }')
  6. Rxb = $ ($ rx2/1000 ))
  7. Echo "net traffic is:" $ ($ rxb-$ rxa) K/S

Save as traffic
The usage is as follows:

Click (Here) Fold or open

  1. Chmod 777 traffic
  2. Watch./Traffic eth0

The effect is as follows:

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.