Unsolved
This post is more than 5 years old
3 Posts
0
1230
March 27th, 2019 04:00
ip and mac acl on one port?
hello i am trying to set up acl allowing me to communicate from port with one specific mac and one specific IP.
I am using Dell 62xx switches.
ATM moment i have something like this:
access-list p17in permit ip a.a.a.a 0.0.0.0 any access-list p17in permit icmp a.a.a.a 0.0.0.0 any mac access-list extended p17in permit aaaa:aaaa:aaaa 0000.0000.0000 any exit interface ethernet 1/g17 mac access-group p17in in 2 ip access-group p17in in 3
So in this case always only first access-list (with lower sequence number in interface section) works. I understand why, but I have no idea how to make both acl work at same time (only one mac address and only one ip address)
any ideas?
0 events found
No Events found!


DELL-Josh Cr
Moderator
•
9.6K Posts
•
42.2K Points
0
March 27th, 2019 10:00
Hi,
Once it matches the permit on one of the ACLs it is allowed and it doesn’t test the second ACL. Having both rules will block things that don’t match either, but if one matches it will permit.
kszysiu
3 Posts
0
March 28th, 2019 03:00
Thank you for your reply.
It's imposible IMHO to left 1IP this way.
if i had 128.0.0.1 then i should:
As far as I know, there is no way to do:
So i am wondering if there is simply way to make what I want. Or its just impossible with those switches?
I want to accept only one mac address with one specific IP.