632

how to display the actual network traffic (wireless) in a terminal?

Additionally: Is it possible to add this info to the chart of top?

25 Answers25

640

Here are some nice tools in the Ubuntu repositories for command line network traffic monitoring:

bmon

Shows multiple interfaces at once

screenshot

slurm

Has nice colored graphs

screenshot

tcptrack

A favorite. Tells how much bandwidth is being used and also what protocol (service/port) and destination the transmission is taking place to. Very helpful when you want to know exactly what is using up your bandwidth

screenshot

Pablo Bianchi
  • 15,657
tomodachi
  • 14,832
258

iftop

It's quite easy! Install "iftop" with:

sudo apt install iftop

Then run

sudo iftop

The application looks like this:

screenshot

Pablo Bianchi
  • 15,657
Tribaal
  • 2,767
  • 19
    To see anything, I have to run (Ubuntu using wifi): $ sudo iftop -i wlan0 – russian_spy Jun 03 '15 at 20:08
  • does iftop also record or log the network bandwidth from time to time? Currently I'm using both vnstat and iftop for different usage, and vnstat logs the bandwidth usage. It would be excessive and add more loads to my server if iftop does it too. – Oki Erie Rinaldi Oct 10 '18 at 04:52
  • 4
    For easier selection of a traffic analysis program, editing to add a screenshot would be great :) – Basj Jan 25 '21 at 14:55
  • Definitely one of the most awesome tools ever seen so far – Fabrizio Sabato Sep 12 '22 at 15:41
224

Nethogs

sudo apt install nethogs

sudo nethogs

The thing that's different and maybe is cooler about this one is that it shows traffic per process, like the image shows

screenshot

Pablo Bianchi
  • 15,657
arsaKasra
  • 3,126
  • 2
  • 19
  • 16
90

There is a nice tool called speedometer that displays a graph in the terminal using Unicode block characters, colors, and even adds labels to each peak in the graph.

$ sudo apt-get install speedometer
$ speedometer -l  -r wlan0 -t wlan0 -m $(( 1024 * 1024 * 3 / 2 ))

Screenshot after running the previous command

It has several options, can monitor multiple interfaces, can show multiple graphs in several rows or columns, and can even monitor the download speed of a single file (by watching the file size on disk).

  • 3
    This is by far the nicest visiual graph i've ever seen in a plain text display. I will be looking into the gui library by the same author now: http://urwid.org/ (source code and author: https://github.com/wardi) – ThorSummoner Dec 11 '15 at 23:25
  • 1
    @ThorSummoner: This is getting off-topic, but urwid is the library used by the awesome PuDB Python debugger. – Denilson Sá Maia Dec 13 '15 at 01:53
  • This just sits at "waiting for to be created". – felwithe Apr 04 '18 at 04:18
  • 1
    @felwithe That probably means you passed the wrong network interface name. Try changing wlan0 in that command to eth0 or to whatever is the name of the network interface in your system. See also: https://unix.stackexchange.com/a/125406 – Denilson Sá Maia Apr 08 '18 at 22:53
  • @DenilsonSáMaia I did not; I checked that. I tried the other interfaces as well. That was all the time I had to fiddle with it. I was having network problems and had to find a tool that worked ASAP. I used one of the simple ones, and it turned out that the problem wasn't bandwidth anyway. – felwithe Apr 09 '18 at 20:07
  • I've got no graph with a lot of question mark block on the terminal, what is missing? – Unknown123 Jun 25 '20 at 23:31
  • @Unknown123 You're missing proper unicode/UTF-8 support in your terminal and/or in your shell environment locale settings. – Denilson Sá Maia Jun 26 '20 at 22:03
  • @DenilsonSáMaia Thanks for reminding me, I forgot such trivial things, I use Kali 2020.2, It has QTerminal 0.14.1 with Qt 5.12.5. There are three built-in supported unicode font that works with speedometer: Nimbus Mono PS, MathJax_Vector, Courier 10 Pitch. After changing into one of that and adjust the font into 12pt, I was able to see the graph nicely. – Unknown123 Jul 01 '20 at 06:06
  • @DenilsonSáMaia How do I use for more than one adapter? I couldn't find any useful documentation, should I open multiple terminal or something like that? – Unknown123 Jul 01 '20 at 06:38
  • @Unknown123 You just repeat -r and -t as many times as you want. You can also insert -c to start a new column. This is all described in --help. – Denilson Sá Maia Jul 02 '20 at 09:45
61

iptraf

IPTraf is a console-based network statistics utility for Linux. It gathers a variety of figures such as TCP connection packet and byte counts, interface statistics and activity indicators, TCP/UDP traffic breakdowns, and LAN station packet and byte counts.

Features

An IP traffic monitor that shows information on the IP traffic passing over your network. Includes TCP flag information, packet and byte counts, ICMP details, OSPF packet types. General and detailed interface statistics showing IP, TCP, UDP, ICMP, non-IP and other IP packet counts, IP checksum errors, interface activity, packet size counts. A TCP and UDP service monitor showing counts of incoming and outgoing packets for common TCP and UDP application ports A LAN statistics module that discovers active hosts and shows statistics showing the data activity on them TCP, UDP, and other protocol display filters, allowing you to view only traffic you're interested in. Logging Supports Ethernet, FDDI, ISDN, SLIP, PPP, and loopback interface types. Utilizes the built-in raw socket interface of the Linux kernel, allowing it to be used over a wide range of supported network cards. Full-screen, menu-driven operation.

Protocols Recognized

IP TCP UDP ICMP IGMP IGP IGRP OSPF ARP RARP

Non-IP packets will simply be indicated as "Non-IP" and, on Ethernet LAN's, will be supplied with the appropriate Ethernet addresses.

Supported Interfaces

Local loopback All Linux-supported Ethernet interfaces All Linux-supported FDDI interfaces SLIP Asynchronous PPP Synchronous PPP over ISDN ISDN with Raw IP encapsulation ISDN with Cisco HDLC encapsulation Parallel Line IP

Source http://iptraf.seul.org/about.html

Installation

With apt:

apt-get install iptraf

Or download the source:

http://iptraf.seul.org/download.html

Screenshots

Current Connections:

tcp connections

Current Ports:

enter image description here

Summary of all Interfaces:

enter image description here

Detailed per Interface:

enter image description here

Source http://iptraf.seul.org/shots.html

jpillora
  • 711
39
tcpdump -i eth0 

That will give you a streaming information of all the data flowing from that interface (your ethernet card). Similar to wireshark.

Use ifconfig to see a list of your machines interfaces.

wardr
  • 2,289
  • 4
  • 21
  • 22
  • 2
    This will certainly display the network information... Not a very user-friendly interface, nor does it have aggregate stats. Definitely think of this like wireshark. – user2943160 Jul 06 '16 at 18:25
36

I think ifconfig [interface] will do that. Like:

gevorg@gevorg-TravelMate-3260:~$ ifconfig wlan0
wlan0     Link encap:Ethernet  HWaddr 00:18:de:89:52:71  
          BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

gevorg@gevorg-TravelMate-3260:~$ ifconfig eth0
eth0      Link encap:Ethernet  HWaddr 00:16:36:bf:92:e3  
          inet addr:192.168.10.100  Bcast:192.168.10.255  Mask:255.255.255.0
          inet6 addr: fe80::216:36ff:febf:92e3/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:342765 errors:0 dropped:0 overruns:0 frame:0
          TX packets:306183 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:373934806 (373.9 MB)  TX bytes:39111569 (39.1 MB)
          Interrupt:16 

It shows RX bytes:73934806 (373.9 MB) and TX bytes:39111569 (39.1 MB).

hingev
  • 6,596
30

If you are looking for something extremely simple, but still useful, try ifstat

$ sudo apt-get install ifstat
$ ifstat
       eth0               wlan0       
 KB/s in  KB/s out   KB/s in  KB/s out
    0.00      0.00      0.96      4.79
    0.00      0.00      0.04      0.14

It monitors all interfaces at once, printing a new line every second. Useful to pipe into another script, or to leave running and observe the bandwidth usage over time. Not as pretty as other tools, but it gets the job done.

There are some useful options listed in the manpage:

-z  Hides interface which counters are null, eg interfaces that are up but not used.
-n  Turns off displaying the header periodically.
-t  Adds a timestamp at the beginning of each line.
-T  Reports total bandwith for all monitored interfaces.
-S  Keep stats updated on the same line if possible (no scrolling nor wrapping).
-b  Reports bandwith in kbits/sec instead of kbytes/sec.
  • 2
    I love this command: ifstat -zntS, which outputs only network interface that are not null, with timestamps, without header showing periodically and with results in only one line (I love man pages). – Igor V. Oct 17 '15 at 19:12
27

Another useful tool is sar. Install it,

apt install sysstat

How to use it:

sar -n DEV  1

And Brendan's amazing graph guide: enter image description here

References

slm
  • 3,035
firo
  • 1,718
  • 14
  • 11
  • +1 for mentioning sar, which does the job and is included (and enabled) by default with most if not all distros. – vladr Mar 29 '18 at 18:06
25

This is not specific to networking, but Glances can display network traffic of different interfaces.

enter image description here

Install it with one of those commands :

sudo snap install glances
sudo apt install glances
Nato Boram
  • 1,188
  • 4
    On Ubuntu 18, installing glances pulls in a lot of X11 and font related packages, which you may want to avoid when working with remote VMs / containers. – RobM Apr 29 '22 at 15:25
17

According to ifconfig man:

This program is obsolete! For replacement check ip addr and ip link. For statistics use ip -s link.

So using ip command:

 $ ip -s link

We can get network stats:

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    RX: bytes  packets  errors  dropped overrun mcast
    173654497900 26078946 0       0       0       0
    TX: bytes  packets  errors  dropped carrier collsns
    173654497900 26078946 0       0       0       0
2: ens3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
    link/ether 12:34:56:78:90:00 brd ff:ff:ff:ff:ff:ff
    RX: bytes  packets  errors  dropped overrun mcast
    3650412438854 399476618 0       2551849 0       0
    TX: bytes  packets  errors  dropped carrier collsns
    617437624480 321390259 0       0       0       0

Or

$ ip -s -h link

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 promiscuity 0 addrgenmode eui64
    RX: bytes  packets  errors  dropped overrun mcast
    174G       26.1M    0       0       0       0
    TX: bytes  packets  errors  dropped carrier collsns
    174G       26.1M    0       0       0       0 2: ens3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
    link/ether 12:34:56:78:90:00 brd ff:ff:ff:ff:ff:ff promiscuity 0 addrgenmode eui64
    RX: bytes  packets  errors  dropped overrun mcast
    3.65T      399M     0       2.55M   0       0
    TX: bytes  packets  errors  dropped carrier collsns
    617G       321M     0       0       0       0
Rotem jackoby
  • 165
  • 1
  • 7
Ruslan
  • 411
16

Install ’vnstat’ it can show traffic for an interface. You can install some plotting packages to get some nice graphs.

McNisse
  • 1,863
13

Also you could use iftop utility

failor
  • 298
9

Ifstat is good tool and it will give you all the interface network usage with respect to time.

sudo apt-get install ifstat

enter image description here

GNK
  • 2,839
8

Another possible tool is called nload. http://linux.die.net/man/1/nload

Similar to slurm or bmon, but a little more simplistic.

Chris
  • 181
  • 1
  • 5
5

There is another tool called bandwhich

gif

  • This is great if you also want to see the addresses of each process. The only drawback for me is it's currently doesn't include the PID of each process. – M Imam Pratama Feb 09 '22 at 17:13
  • Nice looking. Some kind of "fade out" feature would be cool, otherwise I recommend the -t option to see totals. – PJ Brunet Aug 31 '23 at 18:26
5

A powerful tool bpytop like a Swiss army:

Install:

sudo apt install bpytop

List interfaces:

ip -br -c a

Monitor all resources:

bpytop

Also, you can customize your output schema with numbers:

{1,2,3,4}

enter image description here

  • 2
    See also btop, another rewrite that appears to be newer and faster. Also available in the default Ubuntu repos it seems: sudo apt install btop – starbeamrainbowlabs Nov 02 '23 at 22:46
5

And this is a blog showing a list of command to monitor bandwidth:

http://www.binarytides.com/linux-commands-monitor-network/

UPDATE:

I've been using NetHogs for about two months. It shows you total bandwidth usage. With the following setting you can additionally get bandwidth usage for each program

sudo nethogs -v 3

Asme Just
  • 629
4

I recently discovered wavemon which can easily be installed using apt-get install wavemon.

This tool provides information especially on the signal level of the wireless network.

3

This does the trick without needing to install anything special and without needing to be root either:

for i in {1..60};do echo `ifconfig eth0 | grep X.pa`;sleep 1;done 

replace eth0 with whatever interface you want to look at.

sample output:-

RX packets 7838573576 bytes 5261871317174 (4.7 TiB) TX packets 5420075700 bytes 2937680670358 (2.6 TiB)
RX packets 7838574080 bytes 5261871493163 (4.7 TiB) TX packets 5420076058 bytes 2937680745341 (2.6 TiB)
RX packets 7838574496 bytes 5261871573887 (4.7 TiB) TX packets 5420076379 bytes 2937680870613 (2.6 TiB)
cnd
  • 141
  • 1
2

nettop is another option (not in the standard linux repos).

To build clone the repo:

git clone https://github.com/Emanem/nettop.git

Install the dependencies:

sudo apt-get install libncurses5-dev libncursesw5-dev build-essential libpcap-dev

And build the binary:

make

Run with:

sudo ./nettop

Btw, macos has a built-in utility called nettop which does the same thing but has more features.

ccpizza
  • 1,452
  • 17
  • 18
2

Get your answer direct from the process: cat /proc/net/dev easily filtered by line to get a specific interface, e.g. cat /proc/net/dev | grep eth0

Inter-|   Receive                                                |  Transmit
 face |bytes    packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carrier compressed
    lo:  176979    1003    0    0    0     0          0         0   176979    1003    0    0    0     0       0          0
  eth0: 58424096 208513    0  428    0     0          0         0 53857573  355931    0    0    0     0       0          0

James Newton
  • 134
  • 7
1

For me, Slurm worked well:

enter image description here

Install:

sudo apt install slurm

List interfaces

ifconfig

Monitor interface (change eth0):

slurm -i eth0
Pablo Bianchi
  • 15,657
DaWe
  • 130
  • 3
1

There's also conky.

You might have the package listed in your system's currently used repositories. Try running:

sudo apt-get install conky-all

Some basic configuration info: Ubuntu Community Docs: Configuring Conky. CAUTION: The info on that site may be out of date, so please verify the steps listed there apply to your system.

Of course, a basic conky is very boring to look at, so here's a good conky theme to get you started:

conky_themes: Just follow the instructions on that page for setup; to install a particular theme, copy the .conkyrc file from the corresponding folder for the theme in the .harmattan-themes folder to your home directory.

Then, edit the file according to the instructions on the linked page.

TIP: Modify the file after copying it to your home folder, this way you get to keep the original unaltered files in case you need to re-copy the .conkyrc file for a theme.

Pablo Bianchi
  • 15,657
0

VnStat is a fully-featured, command line-based program to monitor Linux network traffic and bandwidth utilization in real-time, on Linux and BSD systems.

Install:

sudo apt install sysstat
xHN
  • 1