cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
521
Views
0
Helpful
6
Replies

Slicing Bandwidth

ganesh_nagar
Level 1
Level 1

Hi,

I have a 2Mbps point to point leased line between 2 places, I want to slice the bandwidth Half, like 1Mb for all the FTP traffic. remaining 1 Mb for Telnet traffic.

Can I do this using frame-relay? If so, Please guide me on this. I am going to connect these locations using Cisco3640 & Cisco 2620 routers. For configure Frame-relay between these two locations, Do i need IP-Plus software?

Thanks in Advance.

Ganesh.I

6 Replies 6

joaopedro
Level 1
Level 1

You can rate limit the traffic using the "rate-limit" command.

JPL

hdt
Level 1
Level 1

Hi,

The rate-limit feature is a nice one. You can slice traffic on protocol-type. You don't need Ip-plus for it. Native IP IOS software will do. Regards .....

Hi

Thanks for your information

Regards

Ganesh

Bestway to acheive bandwidth management is by using class maps & policy statements.

e.g.

class-map match-all default

match any

class-map match-all ftp

match access group 101

class-map match-all telnet

match access group 102

policy-map XYZ

class ftp

bandwidth 1000

class Telnet

bandwidth 1000

101 & 102 are your extended ip access lists allowing ftp & telnet traffic respectively.

and then apply this policy to the interface like this

interface Serial1/0

service-policy output xyz

Hi sachin,

really nice. Thank you very much

Ganesh

This policy above ... just to make it clear in my mind ... will it limit ftp and telnet traffic to 1mb and allow unlimited bw to all other types of traffic on s1/0.

Regards