Como obter o valor atual de txqueuelen no Linux

4

Eu sei que o seguinte comando pode definir txqueuelen no Linux:

ifconfig eth1 txqueuelen 4096

Mas como posso obter txqueuelen atual de uma interface específica? Eu tentei ifconfig eth1 txqueuelen , ele só retorna o uso do comando ifconfig.

Alguém poderia me dar uma ideia? Muito obrigado!

    
por Judking 19.11.2014 / 09:37

1 resposta

6

Basta executar ifconfig como está escrito lá. Por exemplo:

user@host:~$ ifconfig 
eth0      Link encap:Ethernet  HWaddr 04:00:32:00:00:01  
          inet addr:170.0.0.0  Bcast:170.0.255.255  Mask:255.255.192.0
          inet6 addr: fe80::999:zaga:fe78:7901/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:11857875616 errors:0 dropped:0 overruns:0 frame:0
          TX packets:8490937839 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:4817771645749 (4.8 TB)  TX bytes:2541531991948 (2.5 TB)
    
por 06.02.2015 / 16:19