Posts

Showing posts with the label cli

3 step of MQC Cisco Modular Quality of Service QoS Command Line Interface CLI

3 step of MQC Cisco Modular Quality of Service QoS Command Line Interface CLI define a class-map - type of traffic, application, etc, to be match define a policy-map - define what to do with the matched traffic service policy - apply the policy map to the interface 1.define a class-map R2(config)#class-map ?   WORD       class-map name   match-all  Logical-AND all matching statements under this classmap   match-any  Logical-OR all matching statements under this classmap we have two option here, say we want to match two kind of traffic, citrix and http R2(config-cmap)#match protocol http R2(config-cmap)#match input-interface fastEthernet 0/0 if previously we choose all, then only http traffic that coming from fa0/0 will fall into this class-map if we choose any, then any http traffic or any traffic from fa0/0 or both kind of traffic will fall into this class-map if you dont configure any, by default is match-all. Create a class-map n...