Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I need to get some good network monitoring tools. I am trying to find out why my office network is so congested/slow, and I need something that will allow me to look at all the machines in the network and see who is being a piggy.

share|improve this question

5 Answers

Nagios

This is one of the most popular web based Linux monitoring systems nowadays, actually it’s industry standard for IT infrastructure monitoring. Licensed under GPL Nagios is available for everybody free of charge and allows to monitor availability and response time of network services, usage of system resources like CPU load, RAM allocation etc.,

enter image description here

Project’s homepage: http://www.nagios.org/

Cacti

Cacti is another web based monitoring system written in PHP and licensed under GPL. Unlike Nagios describe above Cacti was designed mainly fo the graphs

enter image description here

Project’s homepage: http://www.cacti.net/

Zabbix

enter image description here

Project’s homepage: http://www.zabbix.com/

MRTG

enter image description here

Project’s homepage: http://oss.oetiker.ch/mrtg/

Nfsen

Nfsen is open source Netflow collector and analyzer available under open source license. It differs from monitoring tools described here — Nfsen collects only network usage data and shows the interactive graphs based on that data.

enter image description here

Project’s homepage: http://nfsen.sourceforge.net/

Those are Web based network and system monitoring. If you want desktop applications i would recommend you to use etherape. You can install by:

sudo apt-get install etherape

share|improve this answer

On a few ocassions I used EtherApe to locate a rogue file-sharing app hogging office network bandiwdth. It is availabe in the Software Center.

enter image description here

Whether it's going to help you depends on your network topology - in some (many?) cases your machine's NIC only sees packets going between your machine and the router.

share|improve this answer

SmokePing

SmokePing keeps track of your network latency:

  • latency visualisation.
  • Interactive graph explorer.
  • Wide range of latency measurment plugins.
  • Master/Slave System for distributed measurement.
  • Highly configurable alerting system.
  • Live Latency Charts with the most 'interesting' graphs.

enter image description here enter image description here enter image description here

Project’s homepage: http://oss.oetiker.ch/smokeping/index.en.html

Demo Site with live graphs

To install enter the command:

sudo apt-get install smokeping

See this page for some additional Perl module requirements.

share|improve this answer

In case you need a really quick and easy solution you may try one of cloud-based monitoring services: they normally doesn't require you to go through full-scale installation and configuration process and you can set up simple cross-ping and SNMP relatively quickly. I may recommend the one I'm involved with: Anturis, but there are several others as well, such as Monitis or Panopta.

share|improve this answer
Wireshark is also a good tool. Install it in terminal by running sudo apt-get install wireshark – lordqwerty Feb 26 at 12:41

you can also use nethogs. you can install it by

sudo apt-get install nethogs

you can launch it by

sudo nethogs <connection_name>

for example

sudo nethogs ppp0

for example:enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.