Note
For egress rate limiting, each bridge domain can have only one logical interface from one egress port.Important
The egress ACL rate limiting feature is not supported on SLX 9150, SLX 9250, Extreme 8520, and Extreme 8720.device(config)# class-map eVLAN100 device(config-classmap)# match vlan 100 device(config-classmap)# exit
Note
To configure BFD, you must configure the timing and interval parameters on each interface. When two adjacent interfaces with BFD are configured, they negotiate the conditions for determining if the connection between them is still active.device(config)# policy-map epol device(config-policymap)# class eVLAN100
device(config-policymap-class)# police cir 800000000 device(config-policymap)# exit
device(config)# interface ethernet 3/1 device(conf-if-eth-3/1)# service-policy out epol device(conf-if-eth-3/1)# end
For each egress port, only one policy map is allowed. However, each policy map can have multiple class maps. To configure a port with different shaping criteria for multiple traffic streams, configure a policy map with multiple classes and configure a different criteria for each class.
This example summarizes the steps in the procedure.
class-map eVLAN100 match vlan 100 ! class-map eVLAN200 match vlan 200 ! class-map eBDpol match bridge-domain 100 policy-map epol class eVLAN100 police cir 800000000 ! class eBDpol police cir 1000000000 ! class eVLAN200 police cir 500000000 ! interface Ethernet 3/1 service-policy out epol switchport switchport mode trunk-no-default-native no shutdown logical-interface ethernet 3/1.100 vlan 100 ! logical-interface ethernet 3/1.200 vlan 200 ! !