Что бы ограничить скорость на порту в обе стороны делаем следующее:
Для egress
conf port 1:5 rate-limit egress 150 Mbps
создаем policy
Policy: PolicyName
entry 150M {
if match all {
}
then {
meter MeterName ;
}
}
и привязываем policy к порту
configure access-list PolicyName ports 1:5 ingress
Profit!
Для egress
conf port 1:5 rate-limit egress 150 Mbps
Для ingress
cоздаем Meter
create meter MeterName
configure meter MeterName committed-rate 150000 Kbps max-burst-size 1000 Kb out-actions drop
создаем policy
Policy: PolicyName
entry 150M {
if match all {
}
then {
meter MeterName ;
}
}
и привязываем policy к порту
configure access-list PolicyName ports 1:5 ingress
Profit!
Спасибо за статью. Не пойму как создать policy
ОтветитьУдалитьВ моем Extreme Summit X350-48t я что-то не нашел такого.