#linux查看网卡支持多少队列
grep enp1s0f0 /proc/interrupts |awk '{print $NF}'
ethtool -S eth0
#linux查看网卡队列数
cat /proc/interrupts | grep -E "enp1s0f0|CPU"
#动态监控网卡队列
watch -d -n 1 'cat /proc/interrupts'
watch -d -n 1 'cat /proc/interrupts | grep -E "enp1s0f0|CPU"'
如果文章对你有帮助,欢迎点击上方按钮打赏作者
暂无评论