我的目标是看看这个接口是否有超过2 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所以,请告诉我,
发布于 2017-09-18 15:20:12
您应该使用以下命令:
show qos interface TenGigE 0/0/2/3 input
show qos interface TenGigE 0/0/2/3 output您可以在思科网页进一步查看
https://networkengineering.stackexchange.com/questions/44240
复制相似问题