|
Posted by Brian V on July 6, 2007, 11:24 am
If you were Registered and logged in, you could reply and use other advanced thread options
> Need help to block port 8088 web in coming outgoing. How would the
> access-list read?
> thx
>
>
assuming a router:
from inside to outside:
access-list 101 deny tcp any any eq 8080
access-list 101 permit ip any any
interface <inside>
access-group 101 in
from outside to in:
you would modify your current ACL that is permiting your inbound services.
|