cancel
Showing results for 
Search instead for 
Did you mean: 

XOS 15.3.1.4 - policy and meter question

XOS 15.3.1.4 - policy and meter question

Dawid_Chrzan
New Contributor
Hi,
i am wondering how to catch multiple vlan id's in one if.
Is it possible to do sth like -> ACL-P4-IN

entry POLICE-TEST {
if match any {
vlan-id 1007
vlan-id 1008;
}
then {
permit ;
meter p4-TEST;
}
}

Trying to apply i get
# configure access-list ACL-P4-IN ports 4Error: Policy ACL-P4-IN has syntax errors
Line 4 : Failed argument value vlan is invalid

Second question - if i have one meter called p4-TEST - and it has Committed Rate(Kbps) = 10000
and i use this meter in one entry (src address) and then in second entry (vlan id) of policy.

And lets suppose that traffic caught using src address is 7mbps . Does it mean that there is 3mbps left for traffic caught using vlan id. ?

Does multiple entries using common meter - share it ?
10 REPLIES 10

Ron_Huygens
Community Manager Community Manager
Community Manager
Hi Dawid,

There is a syntax error on the file. There need to be a " ; " after the first vlan-id.

entry POLICE-TEST {
if match any {
vlan-id 1007;
vlan-id 1008;
}
then {
permit ;
meter p4-TEST;
}
}

GTM-P2G8KFN