Outils pour utilisateurs

Outils du site


tech:notes_reseau_-_changer_la_qlen_txqueuelen

Notes réseau - Changer la qlen txqueuelen

ifconfig eth0 txqueuelen 10000
 
ip link set dev eth0 txqueuelen 10000
vi /etc/sysconfig/network-scripts/ifcfg-ens32

/etc/NetworkManager/dispatcher.d/99-set-tx-queue-length-up

#!/bin/bash
# Set TX queue length on enp1s0 to 2000
 
if [ "$1" == "ens32" ] && [ "$2" == "up" ] ; then
    ip link set dev ens32 txqueuelen 4000
fi
chmod +x /etc/NetworkManager/dispatcher.d/99-set-tx-queue-length-up
tech/notes_reseau_-_changer_la_qlen_txqueuelen.txt · Dernière modification : de Jean-Baptiste

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki