Cisco IOS XR 策略统计:

网络工程 服务质量 cisco-ios-xr
2022-02-02 23:12:02

我的目标是查看接口是否获得超过 2gbps 的流量,只是为了看看它是否属实。

因此,我创建了一个包含匹配所有 ACL 的策略映射,并且所有操作 - 违反、符合都设置为传输。

它看起来像这样:

ipv4 access-list test_for_isp
 10 permit ipv4 any any
class-map match-any class_test_isp
 match access-group ipv4 test_for_isp
 end-class-map
! 
policy-map traffic_test
 class class_test_isp
  police rate 1900 mbps 
   conform-action transmit
   exceed-action transmit
   violate-action transmit
  ! 
 ! 
 class class-default
 ! 
 end-policy-map

但我没有看到任何计数器:

RP/0/RSP0/CPU0:ASR02#show policy-map interface all
Mon Sep 18 13:38:16.435 Summer
node0_0_CPU0: 
TenGigE0/0/2/3 input: traffic_test
Class class_test_simcentric
  Classification statistics          (packets/bytes)     (rate - kbps)
    Matched             :                   0/0                    0
    Transmitted         : N/A 
    Total Dropped       :                   0/0                    0
  Policing statistics                (packets/bytes)     (rate - kbps) 
    Policed(conform)    :                   0/0                    0
    Policed(exceed)     :                   0/0                    0
    Policed(violate)    :                   0/0                    0
    Policed and dropped :                   0/0                  
Class class-default
  Classification statistics          (packets/bytes)     (rate - kbps)
    Matched             :                   0/0                    0
    Transmitted         : N/A 
    Total Dropped       : N/A

所以,请指教,

  1. 我的配置不好吗?
  2. 是否应该启用任何其他统计信息?
  3. 也许还有其他方法可以查看接口上的突发/峰值速率 - 使用 IOS XR。
1个回答

您应该使用以下命令:

show qos interface TenGigE 0/0/2/3 input

show qos interface TenGigE 0/0/2/3 output

您可以在Cisco 页面上进一步查看