cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
505
Views
0
Helpful
2
Replies

Policy rate IOS XR 9006

Filemon Neto
Level 1
Level 1

I have a problem to limit the bandwidth of clients in the IOS XR of a 9006. I am proceeding with the blocking according to what was done in the other versions but the same is not working. Can someone help me with this configuration?

ipv4 access-list FILEMON
10 permit ipv4 any any
!
class-map match-all FILEMON
match access-group ipv4 FILEMON
end-class-map
!
policy-map FILEMON
class FILEMON
police rate 3000000000 bps
conform-action transmit
exceed-action drop
!

interface Bundle-Ether4.1620
service-policy output FILEMON

!

Bundle-Ether4.1620 output: FILEMON

Class FILEMON
Classification statistics (packets/bytes) (rate - kbps)
Matched : 17597918/23085533174 3965118
Transmitted : N/A
Total Dropped : 0/0 0
Policing statistics (packets/bytes) (rate - kbps)
Policed(conform) : 17597918/23085533174 3965118
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

I would like to block this client’s link at 3Gbps but it is not working.

2 Replies 2

tkarnani
Cisco Employee
Cisco Employee

how many links in the bundle?

 

https://www.cisco.com/c/en/us/td/docs/routers/asr9000/software/asr9k_r4-1/qos/configuration/guide/qc41asr9kbook/qc41link_bundle.html#pgfId-1236005

 

Link bundle members may appear across multiple Network Processing Units and linecards. The shape rate specified in the bundle policymap is not an aggregate for all bundle members. The shape rate applied to the bundle will depend on the load balancing of the links. For example, if a policy map with a shape rate of 10 Mbps is applied to a bundle with two member links, and if the traffic is always load-balanced to the same member link, then an overall rate of 10 Mbps will apply to the bundle. However, if the traffic is load-balanced evenly between the two links, the overall shape rate for the bundle will be 20 Mbps.

If you change the load-balancing on the bundle it should fix the issue.

 

Like below:

 

int bundle-e 6991
   bundle load-balancing hash dst-ip

 

Thanks,

Sam