<?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 Access from one subnet to another in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092620#M915529</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a router. I connected 3 port so I have 3 subnets:&lt;/P&gt;&lt;P&gt;192.168.0.0/24 Fa0, 192.168.1.0/24 Fa1, and 192.168.2.0/24 Fa2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I need to do:&lt;/P&gt;&lt;P&gt;Subnet 192.168.1.0 is the most secure so nobody should access it, except one host from 192.168.2.0 subnet(192.168.2.10), but users from 192.168.1.0 should access both 0.0 and 2.0 subnets.&lt;/P&gt;&lt;P&gt;Subnets 192.168.0.0 and 192.168.2.0 should access each otherwith no restriction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have configured this:&lt;/P&gt;&lt;P&gt;access-list 100 deny ip 192.168.0.0 0.0.0.255 192.168.1.0 0.0.0.255&lt;/P&gt;&lt;P&gt;access-list 100 deny ip 192.168.2.0 0.0.0.255 192.168.1.0 0.0.0.255&lt;/P&gt;&lt;P&gt;access-list 100 permit ip any any&lt;/P&gt;&lt;P&gt;int fast 1&lt;/P&gt;&lt;P&gt;access-group 100 out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but in this way if users from 192.168.1.0 try to access the other 2 subnet, the return trafic will match the access list 100 so subnet 192.168.1.0 is not able to access them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u give me a solution please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank U!&lt;/P&gt;</description>
    <pubDate>Wed, 13 Mar 2019 00:57:55 GMT</pubDate>
    <dc:creator>Spinu Viorel</dc:creator>
    <dc:date>2019-03-13T00:57:55Z</dc:date>
    <item>
      <title>Access from one subnet to another</title>
      <link>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092620#M915529</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a router. I connected 3 port so I have 3 subnets:&lt;/P&gt;&lt;P&gt;192.168.0.0/24 Fa0, 192.168.1.0/24 Fa1, and 192.168.2.0/24 Fa2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I need to do:&lt;/P&gt;&lt;P&gt;Subnet 192.168.1.0 is the most secure so nobody should access it, except one host from 192.168.2.0 subnet(192.168.2.10), but users from 192.168.1.0 should access both 0.0 and 2.0 subnets.&lt;/P&gt;&lt;P&gt;Subnets 192.168.0.0 and 192.168.2.0 should access each otherwith no restriction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have configured this:&lt;/P&gt;&lt;P&gt;access-list 100 deny ip 192.168.0.0 0.0.0.255 192.168.1.0 0.0.0.255&lt;/P&gt;&lt;P&gt;access-list 100 deny ip 192.168.2.0 0.0.0.255 192.168.1.0 0.0.0.255&lt;/P&gt;&lt;P&gt;access-list 100 permit ip any any&lt;/P&gt;&lt;P&gt;int fast 1&lt;/P&gt;&lt;P&gt;access-group 100 out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but in this way if users from 192.168.1.0 try to access the other 2 subnet, the return trafic will match the access list 100 so subnet 192.168.1.0 is not able to access them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u give me a solution please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank U!&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2019 00:57:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092620#M915529</guid>
      <dc:creator>Spinu Viorel</dc:creator>
      <dc:date>2019-03-13T00:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: Access from one subnet to another</title>
      <link>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092621#M915532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume int fast 1 is 192.168.1.x?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any 192.168.1.0 0.0.0.255 established&lt;/P&gt;&lt;P&gt;access-list 100 permit ip 192.168.2.10 0.0.0.0 192.168.1.0 0.0.0.255&lt;/P&gt;&lt;P&gt;int fast 1 &lt;/P&gt;&lt;P&gt;access-group 100 out &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 14:16:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092621#M915532</guid>
      <dc:creator>acomiskey</dc:creator>
      <dc:date>2008-07-31T14:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Access from one subnet to another</title>
      <link>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092622#M915534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, you assumed right and it is working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 11:53:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092622#M915534</guid>
      <dc:creator>Spinu Viorel</dc:creator>
      <dc:date>2008-08-01T11:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: Access from one subnet to another</title>
      <link>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092623#M915536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What kind of router do you have?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 14:12:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092623#M915536</guid>
      <dc:creator>eplanchon</dc:creator>
      <dc:date>2008-08-01T14:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Access from one subnet to another</title>
      <link>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092624#M915538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cisco 1812&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 16:53:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092624#M915538</guid>
      <dc:creator>Spinu Viorel</dc:creator>
      <dc:date>2008-08-01T16:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Access from one subnet to another</title>
      <link>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092625#M915539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;How do you define 3 subnets using this router?&lt;/P&gt;&lt;P&gt;Do you need to do VLAN?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 17:09:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092625#M915539</guid>
      <dc:creator>eplanchon</dc:creator>
      <dc:date>2008-08-01T17:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Access from one subnet to another</title>
      <link>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092626#M915541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes...it is a little more complicated.&lt;/P&gt;&lt;P&gt;the subnets are connected via a switch HP with VLANS and I have access-list on every every subnet IN direction...but I was intrested in the problem with returning traffic (if u read my firs message)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 17:19:12 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-from-one-subnet-to-another/m-p/1092626#M915541</guid>
      <dc:creator>Spinu Viorel</dc:creator>
      <dc:date>2008-08-01T17:19:12Z</dc:date>
    </item>
  </channel>
</rss>

