|
Posted by marko on May 30, 2008, 4:44 pm
If you were Registered and logged in, you could reply and use other advanced thread options > Verify first that the router really is marking the IP precedence of that
> traffic to 5. It is one thing to apply a policy-map to an interface when
> the traffic is coming from outside of a router versus this situation where
> the router is generating the traffic. Also try an extended PING command
> where you specify the source IP address of the PING to help match whatever
> your policy map has, if applicable.
>
> !
> access-list 2001 remark *
> access-list 2001 remark * Declaring ICMP (including PING) to 10.10.10.10 for
> QoS
> access-list 2001 remark *
> access-list 2001 permit icmp any host 10.10.10.10
> !
> class-map match-any ICMPclass
> description * Classification of ICMP traffic to 10.10.10.10
> match access-group 2001
> !
> policy-map ICMPtagging
> description * Mark ICMP to 10.10.10.10 as IP Presedence 5
> class ICMPclass
> set ip precedence critical
> !
> interface Ethernet1
> service-policy input ICMPtagging
> interface Ethernet0
> service-policy output ICMPtagging
> !
>
> -----
>
> Scott Perry
> Indianapolis, IN
>
> -----
>
Thanks... those are good ideas...
|