9-2
Displaying and Maintaining Traffic Accounting
After completing the configuration above, you can verify the configuration with the
display qos policy
interface
, or
display qos vlan-policy
command depending on the occasion where the QoS policy is
applied.
Class-Based Accounting Configuration Example
Class-Based Accounting Configuration Example
Network requirements
As shown in
Figure 9-1
, Host is connected to GigabitEthernet 1/0/1 of Device.
Configure class-based accounting to collect statistics for traffic sourced from 1.1.1.1/24 and received on
GigabitEthernet 1/0/1.
Figure 9-1
Network diagram for traffic accounting configuration
Configuration procedure
# Create basic ACL 2000, and configure a rule to match packets with source IP address 1.1.1.1.
<DeviceA> system-view
[DeviceA] acl number 2000
[DeviceA-acl-basic-2000] rule permit source 1.1.1.1 0
[DeviceA-acl-basic-2000] quit
# Create a class named
classifier_1
, and reference ACL 2000 in the class.
[DeviceA] traffic classifier classifier_1
[DeviceA-classifier-classifier_1] if-match acl 2000
[DeviceA-classifier-classifier_1] quit
# Create behavior
behavior_1
, and configure an accounting action in the behavior.
[DeviceA] traffic behavior behavior_1
[DeviceA-behavior-behavior_1] accounting
[DeviceA-behavior-behavior_1] quit
# Create a policy named
policy
, and associate class
classifier_1
with behavior
behavior_1
in the
policy.
[DeviceA] qos policy policy
[DeviceA-qospolicy-policy] classifier classifier_1 behavior behavior_1
[DeviceA-qospolicy-policy] quit
# Apply the policy named
policy
to the incoming traffic of GigabitEthernet 1/0/1.
[DeviceA] interface gigabitethernet 1/0/1
[DeviceA-GigabitEthernet1/0/1] qos apply policy policy inbound
[DeviceA-GigabitEthernet1/0/1] quit