There is an implicit deny at the end of every access-list. You could create an object-group to just hold all of the subnets that you allow so it's easier to manage by adding/removing to the object group:
object-group network Email_Range
network-object 1.0.0.0 255.0.0.0
network-object 2.0.0.0 255.0.0.0
access-list email permit tcp object-group Email_Range host <ip address> eq smtp
Main Topics
Browse All Topics





by: jodylemoinePosted on 2009-10-29 at 10:09:22ID: 25695836
An implicit deny is assumed at the end of every access list. As long as you don't have any subsequent statements that allow the traffic to come in by being too permissive, you'll be fine.