Hello,
I have the following ACL:
ip access-list extended TEST
permit tcp 192.168.1.0 0.0.0.255 any eq www
Would it permit only HTTP or any service via 80 port (like skype, youtube streaming, etc.)?
Thanks.
Solved! Go to Solution.
You can look at nbar and inspect statements, but it sounds like you may need to look at an outbound application firewall.
Sent from Cisco Technical Support iPad App
Disclaimer
The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.
Liability Disclaimer
In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.
Posting
As Jeff has already noted, NBAR might be a simple option.
Hello Safar,
the access-list tests the OSI layer4 information on traffic packets.
if the protocol is TCP and the destination port is 80 the traffic is permitted, No tests is performed at application level so if the application is HTTP or is another one using TCP 80 is not checked by the ACL. So forms of tunneling over TCP 80 are permitted as they appear as regular TCP port 80 at OSI layer 4.
Hope to help
Giuseppe
Hello Giuseppe,
many thanks for your reply. Any way to accomplish this task (to inspect the application) to allow only web browsing? I'm using 2921 ISR.
Thanks,
Safar.
You can look at nbar and inspect statements, but it sounds like you may need to look at an outbound application firewall.
Sent from Cisco Technical Support iPad App
Disclaimer
The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.
Liability Disclaimer
In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.
Posting
As Jeff has already noted, NBAR might be a simple option.
Thanks a lot!