cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
341
Views
0
Helpful
2
Replies

Measuring frame relay serial link utilization

seun_ewulomi
Level 1
Level 1

Hi,

Does anyone know the correct expression to monitor utilization on framerelay links.

The expression I am currenly using is

(ifInOctets+ifOutOctets)*8*100/ifSpeed

But for e.g when I graph the utilization for a remote site point-topoint(node) with a 2MB link back to the core router I get graphs that are peaking up to about 250% utilization. Is this corrct for frame relay and why would a link utilization peak so high, Doesnt make sense our remote routers are mostly 3810's with some site carrying voice.

regards,

S.G

2 Replies 2

svermill
Level 4
Level 4

Serial connections are rated in bps as a duplex circuit. That is, there are x bps inbound and that same x bps outbound. So you need to measure the two traffic types seperately. Something like

ifInOctets * 8 / ifSpeed (bps) * 100 = % (absolute) utilization

and

ifOutOctets * 8 / ifSpeed (bps) * 100 = % (absolute) utilization

Review Cisco Networking for a $25 gift card