Options

Trouble In Cisco QoS

loginregisterloginregister Registered Users Posts: 2 ■□□□□□□□□□
Dear ALL,
Would you please explain the workflow of following configuration ?

[FONT=&#23435]ip access-list extended qos-To-Customer[/FONT]
[FONT=&#23435]permit 6 any host 10.0.0.1[/FONT]
[FONT=&#23435]permit 6 any host 10.0.0.2[/FONT]

[FONT=&#23435]class-map match-all To-Customer[/FONT]
[FONT=&#23435]match access-group name qos-To-Customer[/FONT]

[FONT=&#23435]policy-map CHILD[/FONT]
[FONT=&#23435]class To-Customer[/FONT]
[FONT=&#23435]priority 10000[/FONT]
[FONT=&#23435]set dscp cs5[/FONT]

[FONT=&#23435]policy-map PARENT[/FONT]
[FONT=&#23435]class class-default[/FONT]
[FONT=&#23435]shape average percent 10[/FONT]
[FONT=&#23435]service-policy CHILD[/FONT]


[FONT=&#23435]interface GigabitEthernet0/1/3.2002[/FONT]
[FONT=&#23435]service-policy output PARENT[/FONT]
[FONT=&#23435][/FONT]

[FONT=&#23435]MANY MANY THANKS !!! [/FONT]
[FONT=&#23435][/FONT]

Comments

  • Options
    daveybdaveyb Member Posts: 28 ■□□□□□□□□□
    [LEFT][COLOR=#000000][FONT=&amp]ip access-list extended qos-To-Customer[/FONT][/COLOR]
    [COLOR=#000000][FONT=&amp]    permit 6 any host 10.0.0.1[/FONT][/COLOR]
    [COLOR=#000000][FONT=&amp]    permit 6 any host 10.0.0.2[/FONT][/COLOR]
    [/LEFT]
    
    This ACL matches traffic to those 2 hosts.

    [COLOR=#000000]class-map match-all To-Customer[/COLOR]
    [COLOR=#000000]    match access-group name qos-To-Customer[/COLOR]
    
    Match anything that matches the above ACL.

    [COLOR=#000000]policy-map CHILD[/COLOR]
    [COLOR=#000000]    class To-Customer[/COLOR]
    [COLOR=#000000]        priority 10000[/COLOR]
    [COLOR=#000000]        set dscp cs5
    [/COLOR]
    
    For traffic that matches the To-Customer class, set the DSCP markings to CS5 on all packets.
    Also set a guaranteed rate of 10,000 kbps for this traffic.
    [COLOR=#000000]policy-map PARENT[/COLOR]
    [COLOR=#000000]    class class-default[/COLOR]
    [COLOR=#000000]        shape average percent 10[/COLOR]
    [COLOR=#000000]        service-policy CHILD[/COLOR]
    
    This shapes all traffic going through this policy to 10% of the interfaces speed. It also subjects any traffic going through to the CHILD policy map defined above.
    [COLOR=#000000]interface GigabitEthernet0/1/3.2002[/COLOR]
    [COLOR=#000000]    service-policy output PARENT[/COLOR]
    
    Apply this service policy to traffic that is going out of this interface.

    In short, this policy shapes all traffic going out of that sub-interface to 100Mbps. It guarantees at least 10Mbps is available to traffic destined towards 10.0.0.1 and 10.0.0.2 combined.
  • Options
    loginregisterloginregister Registered Users Posts: 2 ■□□□□□□□□□
    Dear Daveyb,

    MANY MANY THANKS !!!
    MANY MANY THANKS !!!
    MANY MANY THANKS !!!
Sign In or Register to comment.