Arista Switchport Bandwidth

Daniel A-S

Member
Hi,

I'm used to Cisco, and can find switchport bandwidth utilisation for each switchport, however I need to find this information on an Arista.

Does anybody know how I can obtain a Mbps figure from an Arista switchport?

I've been searching around for ages now, but can't find anything...

Thanks
 

beers

Moderator
Staff member
I'd recommend leveraging a SNMP monitoring solution so you can just easily graph out or observe historical utilization information.

You should be able to get real-ish time stats similarly to Cisco using something like the below:
Code:
switch>show interfaces ethernet 1-2 counters rates
Port        Intvl   In Mbps      %  In Kpps  Out Mbps      % Out Kpps
Et1          0:05      53.3   0.5%        5      31.2   0.3%        2
Et2          0:05      43.3   0.4%        4       0.1   0.0%        0
switch>
https://www.arista.com/ko/um-eos/eos-section-10-6-ethernet-configuration-commands
 

Daniel A-S

Member
I'd recommend leveraging a SNMP monitoring solution so you can just easily graph out or observe historical utilization information.

You should be able to get real-ish time stats similarly to Cisco using something like the below:
Code:
switch>show interfaces ethernet 1-2 counters rates
Port        Intvl   In Mbps      %  In Kpps  Out Mbps      % Out Kpps
Et1          0:05      53.3   0.5%        5      31.2   0.3%        2
Et2          0:05      43.3   0.4%        4       0.1   0.0%        0
switch>
https://www.arista.com/ko/um-eos/eos-section-10-6-ethernet-configuration-commands
Perfect, thanks!
 
Top