cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
690
Views
15
Helpful
4
Replies

Clients connection to internet bandwidth control

Hello Bros'

              I have an internet connection 50mbps shared between endpoint.

I need to control these endpoints gateway bandwidth per IP or group of IPs.

I have different gears that I will select between them according to the solution applied such as switch3750, 3560, 6509 10/100/100 modules, Routers 2800.

Any suggestions will be appreciated,

TIA

1 Accepted Solution

Accepted Solutions

Hello,

 

below an example for three groups of IP addresses, each of which will be guaranteed 10MB. If the bandwidth is not used, it can be used by other groups. IP addresses are arbitrary, you can tweak this to fit your addressing.

 

access-list 101 permit ip host 192.168.1.1 any
!
access-list 102 permit ip host 192.168.1.2 any
access-list 102 permit ip host 192.168.1.3 any
!
access-list 103 permit ip host 192.168.1.4 any
!
class-map match-any CLASS_1
match ip address 101
!
class-map match-any CLASS_2
match ip address 102
!
class-map match-any CLASS_3
math ip address 103
!
policy-map CHILD_SHAPER
class CLASS_1
priority 10240
class CLASS_2
priority 10240
class CLASS_3
priority 10240
class class-default
fair-queue
!
policy-map PARENT_SHAPER
class class-default
shape average 50000000
service-policy CHILD_SHAPER

!

interface FastEthernet0/0

description Uplink to ISP

service-policy output PARENT_SHAPER

View solution in original post

4 Replies 4

<