I want to know if it is possible to limit BW with two destination address on X460G2. I tried using policy (that I put down) with meter but it tell me that I cant use two source address.
entry rule1 {
if match any {
destination-address 45.230.248.0/22;
destination-address 181.224.232.0/24;
}
then{
meter ECONO-AQP;
}
}
entry rule2 {
if match all{
destination-address 0.0.0.0/0;
}
then {
permit;
}
}
Hi Patrick, thanks for the answer., the internet service we want to rate has two pools so I want to aply a rate limit for the two pools, so I think if I apply in two rules each pool will have the BW of the meter.
You can make each destination-address its own entry:
entry rule10 {
if match any {
destination-address 45.230.248.0/22;
}
then{
meter ECONO-AQP;
}
}
entry rule11 {
if match any {
destination-address 181.224.232.0/24;
}
then{
meter ECONO-AQP;
}
}
This will allow the basic functionality of the ACL to work. If the traffic tags entry10 it will process the action and move on to the next piece of traffic. Also, if you are trying to only limit two individual addresses then you will want to change /22 to /32. For the ACL it will look at the range of IP addresses the mask provides.