<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: help with access-list in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/help-with-access-list/m-p/693649#M1009794</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you just want to prevent http and dns that is great, but if you want to completely prevent everything else you can do on the internet...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_in deny ip host 192.168.50.5 any&lt;/P&gt;&lt;P&gt;access-list acl_in permit ip any any&lt;/P&gt;&lt;P&gt;access-group acl_in in interface inside&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Mar 2007 18:14:47 GMT</pubDate>
    <dc:creator>acomiskey</dc:creator>
    <dc:date>2007-03-20T18:14:47Z</dc:date>
    <item>
      <title>help with access-list</title>
      <link>https://community.cisco.com/t5/network-security/help-with-access-list/m-p/693646#M1009788</link>
      <description>&lt;P&gt;I am trying to get a computer to not access the internet using my PIX 506 (6.3(5) version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to prevent computer with ip 192.168.50.5 to not be able to go to the Internet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I do this like this:&lt;/P&gt;&lt;P&gt;access-list acl_in deny tcp 192.168.50.5 255.255.255.0 0 0 eq http&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already have binded this acl_in to the interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.  BTW, can I do this with the mac-address too?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Julio,&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 09:49:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/help-with-access-list/m-p/693646#M1009788</guid>
      <dc:creator>flopez</dc:creator>
      <dc:date>2019-03-11T09:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: help with access-list</title>
      <link>https://community.cisco.com/t5/network-security/help-with-access-list/m-p/693647#M1009790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;access-list acl_in deny tcp 192.168.50.5 255.255.255.0 any eq http &lt;/P&gt;&lt;P&gt;access-l acl_in permit tcp any any eq 80 &lt;/P&gt;&lt;P&gt;access-l acl_in permit udp any any eq 53&lt;/P&gt;&lt;P&gt;(this will ensure Internet connectivity for rest of the mass)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No you cant do it on the basis of MAC address&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2007 17:43:12 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/help-with-access-list/m-p/693647#M1009790</guid>
      <dc:creator>abinjola</dc:creator>
      <dc:date>2007-03-20T17:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: help with access-list</title>
      <link>https://community.cisco.com/t5/network-security/help-with-access-list/m-p/693648#M1009792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The above looks good except the deny will deny the whole network 192.168.50.0.  Try...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_in deny tcp host 192.168.50.5 any eq http&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_in deny tcp host 192.168.50.5 255.255.255.255 any eq http&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then add...&lt;/P&gt;&lt;P&gt;access-list acl_in permit tcp any any eq 80 &lt;/P&gt;&lt;P&gt;access-list acl_in permit udp any any eq 53 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to restrict access out bound for http and dns only.  You might want to add &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_in permit tcp any any eq https&lt;/P&gt;&lt;P&gt;(for secure http)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or some people just add this line at the end of the deny list...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_in permit ip any any&lt;/P&gt;&lt;P&gt;(to let all traffic out to the internet not previously denied.  Not as secure but very common)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2007 18:13:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/help-with-access-list/m-p/693648#M1009792</guid>
      <dc:creator>jspringfield</dc:creator>
      <dc:date>2007-03-20T18:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: help with access-list</title>
      <link>https://community.cisco.com/t5/network-security/help-with-access-list/m-p/693649#M1009794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you just want to prevent http and dns that is great, but if you want to completely prevent everything else you can do on the internet...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_in deny ip host 192.168.50.5 any&lt;/P&gt;&lt;P&gt;access-list acl_in permit ip any any&lt;/P&gt;&lt;P&gt;access-group acl_in in interface inside&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2007 18:14:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/help-with-access-list/m-p/693649#M1009794</guid>
      <dc:creator>acomiskey</dc:creator>
      <dc:date>2007-03-20T18:14:47Z</dc:date>
    </item>
  </channel>
</rss>

