dmesg -T | grep -i "net"
journalctl --since "2 hours ago" | grep -iE "eth|eno|enp|vmbr|bridge|error"
lspci | grep -i eth |grep Intel | grep 218
lspci | grep -i eth |grep Intel | grep 219
вместо eno1 - указать свою сетевую карту
/usr/sbin/ethtool -K eno1 tso off gso off
по максисмуму от ИИ
ethtool -K eno1 tx off rx off sg off tso off gso off gro off
/etc/network/interfaces
auto vmbr0
iface vmbr0 inet static
address 94.130.222.29/26
gateway 94.130.222.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
post-up /usr/sbin/ethtool -K eno1 tso off gso off
|
ethtool -k eno1 | grep tcp-segmentation-offload
ethtool -k eno1 | grep generic-segmentation-offload
brctl show
ip link show type bridge
или более детально
ip addr show master vmbr0
ip -s link show
ip -s link show enp5s0
Следить в реальном времени
watch -n 1 ip -s link show enp5s0