To do this you really have to have a good understanding of what traffic you currently have running through that border router. You can set up an ACL but must remember that DNS, mail, web, secure web, ftp and any other applications you are running to an external source will need to have data returned from the outside which means those ports to those servers have to be allowed back in. It can be done but is hard to install and manage.<br><br>Hope this helps<br>Rob Brown
There is a multitude of access lists you can create. They can be used for IPX, IP, appletalk, ect...<br><br>For IP there is 2 different variances of it. You can use access lists that number from 1-99 which is a basic access list or you can do an extended access list which gives the options to specify protocol or port for incoming or outgoing access. I will give you a very basic of each and how to implement them but to go into a lot of detail would take far to long.<br><br>First you create the access list:<br>conf t<br>access list 1 permit 10.0.0.0 0.0.0.255 <br>(remember when a access list is created there is an implicit deny all statement at the end)<br><br>Now the access list has been created and must be assigned to an interface<br>conf t<br>int e0<br>access group 1 in or out (depending on which way you want it blocked)<br><br>This is saying that any address starting with 10.0.0 will be permitted access either in or out depending on what the access group is set up as.<br><br>An extended access list is as follows:<br>access 101 permit TCP 10.0.0.0 0.0.0.255 eq
80) any <br><br>and then apply it to the interface just like in the previous example.<br><br>This is basically allowing 10.0.0.??? can connect to anything using port 80 <br><br>Like I said these are real basic there is a multitude of options that you are offered but a word of warning if you try this on a production network you could lock people out (including yourself out of the router) <br><br>The implicit deny all usually gets everyone at one time or another.<br><br>Hope this helps<br>Rob Brown
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.