How to limit BW with two source address on X460G2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎01-24-2019 08:48 PM
Hello everybody
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;
}
}
Thanks for the help in advance
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;
}
}
Thanks for the help in advance
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎01-26-2019 02:56 PM
Hi,
Only routing policy can use the "match any" criteria. ACLs are limited to a "match all" criteria, hence your error message.
Only routing policy can use the "match any" criteria. ACLs are limited to a "match all" criteria, hence your error message.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎01-24-2019 09:24 PM
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.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎01-24-2019 09:02 PM
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.
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.
