Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Restricting Bandwidth Over ISDN

Status
Not open for further replies.

DionBr

Technical User
Feb 5, 2001
11
ZA

I have two routers using PPP multilink on a BRI line that I would like to restrict the bandwidth. What I would like to accomplish is to allow telnet access (port 23) top priority, Groupwise 7100 and 1677 ports virtually no bandwidth and the rest about a fourth of the bandwidth. I believe the best way to accomplish this would be access lists. How would I go about this? Could you provide a config?
 
You need to use the access list in conjunction with policy routing to specify the access restrictions. The access list provides the filter for what IPs, ports etc and the QOS will take care of the bandwidth.

Cisco's white paper on policy routing

Here is an example of what I *think* you are asking for.

interface Serial0
ip address w.x.y.z 255.255.255.252
encapsulation frame-relay IETF
priority-group 1 ; applies the QOS filter
frame-relay lmi-type ansi
frame-relay map ip w.x.y.z 16 broadcast IETF nocompress
.
.
priority-list 1 protocol ip high tcp http ; gives Web highest priority
priority-list 1 protocol ip normal
priority-list 1 default low


Mike S
"Diplomacy; the art of saying 'nice doggie' till you can find a rock" Wynn Catlin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top