#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"'
暂无评论