Jun 17, 2005 #1 colinT23 Technical User Feb 10, 2005 125 GB Hi Guys, I need to prevent 1 PC (192.168.1.254) on our network from accessing the internet. Any ideas how I configure the PIX to do this ? Thanks. Regards Colin.
Hi Guys, I need to prevent 1 PC (192.168.1.254) on our network from accessing the internet. Any ideas how I configure the PIX to do this ? Thanks. Regards Colin.
Jun 17, 2005 1 #2 ChrisAC ISP Aug 6, 2001 2,158 GB Put an access list on the inside interface denying all traffic from that host and then allow everything else. access-list outbound deny ip host 192.168.1.254 any log access-list outbound permit ip any any access-group outbound in interface inside Chris. ********************** Chris A.C, CCNA, CCSA ********************** Upvote 0 Downvote
Put an access list on the inside interface denying all traffic from that host and then allow everything else. access-list outbound deny ip host 192.168.1.254 any log access-list outbound permit ip any any access-group outbound in interface inside Chris. ********************** Chris A.C, CCNA, CCSA **********************
Jun 18, 2005 Thread starter #3 colinT23 Technical User Feb 10, 2005 125 GB Hi Chris, Thanks for that. Is the 'log' statement necessary or is this just for information purposes ? Regards Colin. Upvote 0 Downvote
Hi Chris, Thanks for that. Is the 'log' statement necessary or is this just for information purposes ? Regards Colin.
Jun 18, 2005 #4 ChrisAC ISP Aug 6, 2001 2,158 GB It's just informational. If I'm blocking a host I like to see what they are attempting to do. You don't have to add 'log'. Chris. ********************** Chris A.C, CCNA, CCSA ********************** Upvote 0 Downvote
It's just informational. If I'm blocking a host I like to see what they are attempting to do. You don't have to add 'log'. Chris. ********************** Chris A.C, CCNA, CCSA **********************
Jun 18, 2005 Thread starter #5 colinT23 Technical User Feb 10, 2005 125 GB Hi Chris, Many thanks for your help on this. Regards Colin. Upvote 0 Downvote