Iskander wrote:
> What I'm trying to set up, is to be able to give EIGRP a Low
> Latency-priority, a Custom-protocol (RDP) a fixed minimum bandwidth
> with the ability to grab what it needs above the minimum, HTTP and FTP
> a lesser priority, and the rest whatever bandwidth is available...
>
Ok, that's fairly easy.
1) First you need a class-map matching each of the 4 classes.
Eigrp should already be marked to ip precedence 6 by your router, but
you can check this with a packet sniffer. So you can just match ip prec
6 for your priority class, and you will pick anything the router marks
to 6 by default, such as routing protocols and ntp.
class-map match-any EIGRP-ET-ALL
match ip precedence 6
The other classes you should be able to figure out...
2) 2nd the actual policy, e.g.
policy-map ADSL
class eigrp-et-all
priority percent x
class rdp
bandwidth percent y
class http-ftp
bandwidth percent z
class class-default (optional)
bandwidth percent n
3) Apply the policy to the PVC (not sub-int
interface atm 0
pvc 8/35
service policy output ADSL
|