mzinz wrote: One of the huge benefits of ASA's is that they create stateful connections, right? So an outgoing connection will be allowed back inbound (if I'm understanding properly) Do routers not have stateful connections? ie: Accessing a web-interface application - It works on my network behind an ASA, but on a different network it has trouble connecting.
mzinz wrote: Thanks for clearing that up, that helps. One thing I'm a little hazy on is the IP Inspect statement. If I don't have port 80 open in my ACL (outbound coming in), but I do have 'IP INSPECT <NAME> 80', will the traffic be allowed? If I have port 80 open in my ACL, but I don't have 'IP INSPECT <NAME> 80', will the traffic be allowed? What exactly is occurring there?
dtlokee wrote: mzinz wrote: Thanks for clearing that up, that helps. One thing I'm a little hazy on is the IP Inspect statement. If I don't have port 80 open in my ACL (outbound coming in), but I do have 'IP INSPECT <NAME> 80', will the traffic be allowed? If I have port 80 open in my ACL, but I don't have 'IP INSPECT <NAME> 80', will the traffic be allowed? What exactly is occurring there? Assuming you are trying to allow inside hosts to access the Internet the inspection of the outbound traffic will dynamically create entries in the state table to return, thre is no need to open any inbound ports for http.If the goal is to allow access to an internal webserver from the Internet you will need to open port 80 to allow the traffic into the router.
mzinz wrote: access-list 101 permit ip any any established Is that just telling it to allow any inbound connections that have already been established?