Web Server Example PDF Print E-mail

! httpd to web server(s) only
acc 101 permit tcp 0.0.0.0 255.255.255.255 192.168.6.10 0.0.0.0 eq 80
acc 101 permit udp 0.0.0.0 255.255.255.255 192.168.6.10 0.0.0.0 eq 80

Notice that in this list both lines are exactly the same except one is for tcp and the other is for udp protocol, both may be needed for web page access on your web server. The other thing to note is that the web server IP Address is specifically noted, 192.168.6.10. You only want to allow access to your web server not other computers. Web servers use port 80 to serve web pages, that is why 80 is at the end of the line.

web server example