Zartanasaurus wrote: » They way you wrote that policy will work, but your understanding is off. The deny statement in the ACL doesn't deny the traffic before the VACL processes it. The ACL is used to determine the traffic you want to apply a policy to in the access-map. So effectively it looks like this: 1: forward all traffic that matches ACL_TEST (explicit) 2: Everything but RDP matches ACL_TEST 3: No other policies to process so everything else is dropped (implicit deny at end) Change the VACL to this: vlan access-map VACL_TEST 10 match ip address ACL_TEST action drop vlan access-map VACL_TEST 20 action forward Now what happens? 1: drop all traffic that matches ACL_TEST (explicit) 2: Everything but RDP matches ACL_TEST 3: Forward everything (explicit) 4: Drop everything (implicit) Now everything will be dropped EXCEPT RDP.