XOS 15.3.1.4 - policy and meter question
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎05-28-2014 10:10 AM
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 ?
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎05-28-2014 10:20 AM
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;
}
}
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;
}
}
