View instantaneous speed for device

Hello.
With Darkstat or another component is possible to view the instantaneous speed (Kbps/sec) used by each device?
Thanks

1 Like

https://openwrt.org/docs/guide-user/services/network_monitoring/bwmon

iftop I’ve used on other systems.

You’ll likely need a fast, multi-core device with plenty of RAM.

1 Like

This measures the Kb and not the Kb / sec

1 Like

I started using iftop and it works fine.
Is it possible to display 2 interfaces in the same console at the same time?
I tried "iftop -i br-lan -i lan1.3" but it doesn't work.
Thanks.

See the man page on a desktop, linked above, in the source or through resources listed at http://www.ex-parrot.com/pdw/iftop/

As far as I’ve ever used it, one interface per instance.

It goes beyond this thread.
There is a Mac program where I double click and login via ssh to the OpnWrt router without requiring a password and start iftop automatically?
Thanks.

Okay that part, ssh without having to type a password is easy, you just need to add your public key to the router's authorized_keys file:

    # dropbear (openwrt/lede/turrisos)
    cat ~/.ssh/id_rsa.pub | ssh root@192.168.1.1 'cat >> /etc/dropbear/authorized_keys'

    # do not leak the key...
    ssh root@192.168.1.1 'chmod 0700 /etc/dropbear'
    ssh root@192.168.1.1 'chmod 0600 /etc/dropbear/authorized_keys'

From then on ssh root@192.168.1.1 from the machine which public key you authorized will not require a password anymore.

for one-shot commands like traceroute you could use
ssh root@192.168.1.1 'traceroute 8.8.8.8'
to get the result into the calling terminal window, but that does not work with interactive screen updating applications like iftop (it also does not solve you double click issue, but it should be easy to start a shell script by double click).

Sorry fr not being able to not fully solve your issue.