Normally, you enable or disable damping on a per-peer basis. However, you can disable damping for a specific prefix received from a peer by including the disable option:
- disable;
You can include this statement at the following hierarchy levels:
In this routing policy example, although damping is enabled for the peer, the damping none statement specifies that damping be disabled for prefix 3.0.0.0/8 in Policy-A. This route is not damped because the routing policy statement named Policy-A filters on the prefix 3.0.0.0/8 and the action points to the damping statement named none. The remaining prefixes are damped using the default parameters.
- [edit]
- policy-options {
-
- policy-statement Policy-A {
-
- from {
- route-filter 10.0.0.0/8 exact;
- }
- then damping none;
- }
-
- damping none {
- disable;
- }
- }