<?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: ACL setup on Procurve 8212 in Switches, Hubs, and Modems</title>
    <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705322#M24252</link>
    <description>What's the subnet that your clients in VLAN 80 use and is the switch that you applied that ACL to the default gateway for the clients in VLAN 80?</description>
    <pubDate>Wed, 27 Oct 2010 21:26:21 GMT</pubDate>
    <dc:creator>Mohammed Faiz</dc:creator>
    <dc:date>2010-10-27T21:26:21Z</dc:date>
    <item>
      <title>ACL setup on Procurve 8212</title>
      <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705317#M24247</link>
      <description>I need to setup a ACL (?) on our procurve 8212, to allow access to vlan 80 to get to the internet, our dns servers and nothing else.&lt;BR /&gt;&lt;BR /&gt;I'm pretty good with the procurves, but have never done acl's...&lt;BR /&gt;&lt;BR /&gt;I'm googling.. but figured i'd start a thread anyways.&lt;BR /&gt;&lt;BR /&gt;So -&lt;BR /&gt;vlan 80 needs to get to the internet (all ports ar efine, FW will determine ports)&lt;BR /&gt;Vlan 80 needs to get to - &lt;BR /&gt;firewall - 10.10.10.1&lt;BR /&gt;DNS - 10.10.10.76&lt;BR /&gt;DNS - 10.10.10.70&lt;BR /&gt;&lt;BR /&gt;I dont want them getting to any of our other networks or sister companies on the MPLS.&lt;BR /&gt;This includes all 10.11.0.0/16 or 10.12.0.0/16 networks. Or any of the other 10.10.1-9.0/24 networks that are local.&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Tue, 26 Oct 2010 19:22:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705317#M24247</guid>
      <dc:creator>psycho.chicken</dc:creator>
      <dc:date>2010-10-26T19:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: ACL setup on Procurve 8212</title>
      <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705318#M24248</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;A couple of things there.&lt;BR /&gt;Your vlan 80 clients won't need to reach the firewall (their traffic is routed to the firewall but the _destination address_ is somewhere on the internet).&lt;BR /&gt;What it would be easiest to do is this (assuming the 8212 is the gateway for vlan 80 clients) :&lt;BR /&gt;&lt;BR /&gt;- Permit access to DNS servers&lt;BR /&gt;- Deny access to all other 10.* networks&lt;BR /&gt;- Permit access to anything else&lt;BR /&gt;&lt;BR /&gt;You would apply this as an inbound ACL on the switch (the direction of the ACL is with respect to the switch, i.e. an inbound ACL on vlan 80 is filtering traffic inbound to the switch from clients on vlan 80)&lt;BR /&gt;&lt;BR /&gt;HTH</description>
      <pubDate>Wed, 27 Oct 2010 08:29:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705318#M24248</guid>
      <dc:creator>Mohammed Faiz</dc:creator>
      <dc:date>2010-10-27T08:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: ACL setup on Procurve 8212</title>
      <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705319#M24249</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;if your IP network in VLAN 80 is i.e. 1.1.1.0/24 then the ACL could be like this:&lt;BR /&gt;&lt;BR /&gt;ip access-list extended ACL_80_IN&lt;BR /&gt; deny ip 1.1.1.0 0.0.0.255 10.11.0.0 0.0.255.255&lt;BR /&gt; deny ip 1.1.1.0 0.0.0.255 10.12.0.0 0.0.255.255&lt;BR /&gt; permit ip any any &lt;BR /&gt;vlan 80&lt;BR /&gt; ip access-group ACL_80_IN in&lt;BR /&gt;&lt;BR /&gt;In this case the clients can't access the MPLS networks, but everywhere else. You have to do the permit any any, otherwise access to internet won't work.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Michael</description>
      <pubDate>Wed, 27 Oct 2010 09:08:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705319#M24249</guid>
      <dc:creator>Michael_Breuer</dc:creator>
      <dc:date>2010-10-27T09:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: ACL setup on Procurve 8212</title>
      <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705320#M24250</link>
      <description>If i didnt want to allow access to ALL 10.* networks, except for 10.10.80.0/24 could i just do a -&lt;BR /&gt;&lt;BR /&gt;deny ip 10.10.80.0 0.0.0.255 10.0.0.0 0.0.255.255&lt;BR /&gt;&lt;BR /&gt;i have about 40 networks I would need to add to the deny, some 10's some 192 and some 172's...</description>
      <pubDate>Wed, 27 Oct 2010 15:47:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705320#M24250</guid>
      <dc:creator>psycho.chicken</dc:creator>
      <dc:date>2010-10-27T15:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: ACL setup on Procurve 8212</title>
      <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705321#M24251</link>
      <description>So i did this -&lt;BR /&gt;&lt;BR /&gt;ip access-list extended "ACL_VLAN80_IN"&lt;BR /&gt;   10 permit ip 10.3.80.0 0.0.0.255 10.3.0.76 0.0.0.0&lt;BR /&gt;   20 permit ip 10.3.80.0 0.0.0.255 10.3.0.70 0.0.0.0&lt;BR /&gt;   30 deny ip 10.3.80.0 0.0.0.255 10.3.0.0 0.0.255.255&lt;BR /&gt;   40 deny ip 10.3.80.0 0.0.0.255 10.4.0.0 0.0.255.255&lt;BR /&gt;   50 deny ip 10.3.80.0 0.0.0.255 10.0.0.0 0.0.255.255&lt;BR /&gt;   60 deny ip 10.3.80.0 0.0.0.255 10.1.0.0 0.0.255.255&lt;BR /&gt;   70 deny ip 10.3.80.0 0.0.0.255 10.2.0.0 0.0.255.255&lt;BR /&gt;   80 deny ip 10.3.80.0 0.0.0.255 10.15.0.0 0.0.255.255&lt;BR /&gt;   90 deny ip 10.3.80.0 0.0.0.255 10.16.0.0 0.0.255.255&lt;BR /&gt;   100 deny ip 10.3.80.0 0.0.0.255 172.16.0.0 0.0.255.255&lt;BR /&gt;   110 deny ip 10.3.80.0 0.0.0.255 172.17.0.0 0.0.255.255&lt;BR /&gt;   120 deny ip 10.3.80.0 0.0.0.255 172.18.0.0 0.0.255.255&lt;BR /&gt;   130 deny ip 10.3.80.0 0.0.0.255 172.19.0.0 0.0.255.255&lt;BR /&gt;   140 deny ip 10.3.80.0 0.0.0.255 172.20.0.0 0.0.255.255&lt;BR /&gt;   150 deny ip 10.3.80.0 0.0.0.255 192.168.100.0 0.0.254.255&lt;BR /&gt;   160 permit ip 0.0.0.0 255.255.255.255 0.0.0.0 255.255.255.255&lt;BR /&gt;   exit&lt;BR /&gt;vlan 80&lt;BR /&gt;ip access-group ACL_VLAN80_IN in&lt;BR /&gt;wri mem&lt;BR /&gt;&lt;BR /&gt;And i can still get everywhere on vlan 80...</description>
      <pubDate>Wed, 27 Oct 2010 20:13:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705321#M24251</guid>
      <dc:creator>psycho.chicken</dc:creator>
      <dc:date>2010-10-27T20:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: ACL setup on Procurve 8212</title>
      <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705322#M24252</link>
      <description>What's the subnet that your clients in VLAN 80 use and is the switch that you applied that ACL to the default gateway for the clients in VLAN 80?</description>
      <pubDate>Wed, 27 Oct 2010 21:26:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705322#M24252</guid>
      <dc:creator>Mohammed Faiz</dc:creator>
      <dc:date>2010-10-27T21:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: ACL setup on Procurve 8212</title>
      <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705323#M24253</link>
      <description>the gateway the cliente on vlan 80 go to is 10.3.80.100&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Oct 2010 21:29:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705323#M24253</guid>
      <dc:creator>psycho.chicken</dc:creator>
      <dc:date>2010-10-27T21:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: ACL setup on Procurve 8212</title>
      <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705324#M24254</link>
      <description>Sorry,&lt;BR /&gt;&lt;BR /&gt;clients on vlan 80 use 10.3.80.0/24&lt;BR /&gt;The VLAn 80 DGW is 10.3.80.100 (one of many VLANs on the 8212)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Oct 2010 21:30:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705324#M24254</guid>
      <dc:creator>psycho.chicken</dc:creator>
      <dc:date>2010-10-27T21:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: ACL setup on Procurve 8212</title>
      <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705325#M24255</link>
      <description>Ok, and when you say the vlan 80 clients can still see everything are you pinging/connecting to other clients on 10.* networks?&lt;BR /&gt;One thing to remember with routed ACL's is that they do not filter any traffic with a destination address that lives on the switch itself, i.e. if you ping other gateways on your 8200 that will still work.</description>
      <pubDate>Thu, 28 Oct 2010 08:24:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705325#M24255</guid>
      <dc:creator>Mohammed Faiz</dc:creator>
      <dc:date>2010-10-28T08:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: ACL setup on Procurve 8212</title>
      <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705326#M24256</link>
      <description>Yes,&lt;BR /&gt;&lt;BR /&gt;i can ping 10.3.0.93 and 10.4.0.12, both should not be reachable if the rules are correct.</description>
      <pubDate>Thu, 28 Oct 2010 21:19:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705326#M24256</guid>
      <dc:creator>psycho.chicken</dc:creator>
      <dc:date>2010-10-28T21:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: ACL setup on Procurve 8212</title>
      <link>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705327#M24257</link>
      <description>That does seem strange then. Can you post up the config on that switch?</description>
      <pubDate>Fri, 29 Oct 2010 08:35:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/switches-hubs-and-modems/acl-setup-on-procurve-8212/m-p/4705327#M24257</guid>
      <dc:creator>Mohammed Faiz</dc:creator>
      <dc:date>2010-10-29T08:35:25Z</dc:date>
    </item>
  </channel>
</rss>

