Solution ZEBRA: netlink-listen recvmsg overrun: No buffer space available

Once on the server with Quagga after adding several thousand network interfaces, I noticed a message in the logs /var/log/zebra.log:

ZEBRA: netlink-listen recvmsg overrun: No buffer space available

Continue reading “Solution ZEBRA: netlink-listen recvmsg overrun: No buffer space available”

How to install Midnight Commander (MC) on Ubuntu 18.04

Once after installing Ubuntu Server 18.04, when trying to install Midnight Commander, a message was displayed that the package for installation was not found.

To solve the problem, you need to add the Universe repository:
Continue reading “How to install Midnight Commander (MC) on Ubuntu 18.04”

Speed limit on network interface using TC

I will give an example of a speed limit of up to 3.3 Gb/s on a network interface on Ubuntu Server 16.04:

/sbin/tc qdisc del dev ens2f0 parent ffff:
/sbin/tc qdisc add dev ens2f0 handle ffff: ingress
/sbin/tc filter add dev ens2f0 parent ffff: protocol ip prio 50 u32 match ip dst 0.0.0.0/0 police rate 3300mbit burst 330k mtu 30000 drop flowid 1:0

Continue reading “Speed limit on network interface using TC”