cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
508
Views
0
Helpful
3
Replies

QoS Bandwidth

haitham.jneid
Level 1
Level 1

Hi Experts,

I have a total bandwidth of 200Mbps and I need to distribute this bandwidth on 200 apartments in a way that each apartment could have up to 25Mbps. How can I achieve that without facing any bandwidth starvation.

thanks,

Haitham Jneid

3 Replies 3

Julio E. Moisa
VIP Alumni
VIP Alumni

Hi

You could use police or shape, the following link could be useful:

http://packetlife.net/blog/2008/jul/30/policing-versus-shaping/

:-)




>> Marcar como útil o contestado, si la respuesta resolvió la duda, esto ayuda a futuras consultas de otros miembros de la comunidad. <<

Ganesh Hariharan
VIP Alumni
VIP Alumni
Hi Experts,
I have a total bandwidth of 200Mbps and I need to distribute this bandwidth on 200 apartments in a way that each apartment could have up to 25Mbps. How can I achieve that without facing any bandwidth starvation.
thanks,
Haitham Jneid

Hi Haitham,

Agree with Julio , Best way is to opt either policing or shaping based on your need..

The main difference between the two is ..

Traffic policing propagates bursts. When the traffic rate reaches the configured maximum rate, excess traffic is dropped (or remarked).  

Traffic shaping retains excess packets in a queue and then schedules the excess for later transmission over increments of time. The result of traffic shaping is a smoothed packet output rate.

Example for traffic policing & Shaping ..

checkout the link for more clarification.

Hope it Helps..

-GI

Joseph W. Doherty
Hall of Fame
Hall of Fame

What can be done depends on the device's QoS features and also what your overall topology is.

You may be unable to preclude all cases of bandwidth starvation.

What's posted, below, would be an example of what you might be able to accomplish on a Cisco ISR.

policy-map 200M
 class class-default
  shape average 200000000
  fair-queue

policy-map Apartment
 class Apartment001
  police average 25000000
 class Apartment002
  police average 25000000
 .
 .
 class Apartment199
  police average 25000000
 class Apartment200
  police average 25000000

int g0
 desc inside
 service-policy input Apartments

int g1
 desc outside
 service-policy input Apartments
 service-policy output 200M