Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ACL on Baystack 5520 1

Status
Not open for further replies.

stefan101

Technical User
Oct 9, 2008
2
0
0
IE
I've have several baystack 5520 (new). I've install several vlan and need to restrict access accross some vlans but all need access to the core. So i figure the best way is ACL's id like to group the ACL into a block but for some reason when I inport the same block name it creates a seperate Classifier block and ID.
I cannot also assign this block to the ports. Could anyone help.

Heres an example of the setup i'm tring

qos ip-acl name test src-ip 10.0.0.0/24 dst-ip 10.0.1.0/24 drop-action enable block vlan_test

qos ip-acl name test src-ip 10.0.1.0/24 dst-ip 10.0.0.0/24 drop-action enable block vlan_test

qos acl-assign port 1/1 acl-type ip name vlan_test

Am I approaching this wrong, I could manually enter each one but if got 9 switches and 10 vlans this would be hellish and very untidy.

Stefan
 
Hi Stefan101

This is another option to achieve your goal.

qos ip-element 1 src-ip 10.0.0.0/24 dst-ip 10.0.1.0/24
qos ip-element 2 src-ip 10.0.1.0/24 dst-ip 10.0.0.0/24
qos classifier 1 set-id 1 name test element-type ip element-id 1
qos classifier 2 set-id 2 name "test_2" element-type ip element-id 2
qos classifier-block 1 block-number 1 name testblock set-id 1
qos classifier-block 2 block-number 1 name testblock set-id 2
qos policy 1 name test port 1 clfr-type block clfr-id 1 in-profile-action 1 precedence 11
 
Thanks for the above!!

is there a maximum number of ip-elemenets you can set?

I seem to have maxed out at 200
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top