<?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: NAT/Route question in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782934#M1004129</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If there is not router (and no internet gateway) and if the default route of the host PCs is the firewall, the firewall will route traffic between it's connected subnet with no need to add any config.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 May 2007 14:48:25 GMT</pubDate>
    <dc:creator>dominic.caron</dc:creator>
    <dc:date>2007-05-24T14:48:25Z</dc:date>
    <item>
      <title>NAT/Route question</title>
      <link>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782929#M1004124</link>
      <description>&lt;P&gt;Can anyone help me out on this:&lt;/P&gt;&lt;P&gt;I'm used to setting up PIX's for internet usage either with Static NAT's, Dynamic NAT's or both with a router between the networks.&lt;/P&gt;&lt;P&gt;What I want to do is segment 2 private networks with a 515E, but I can't seem to get my head around not NAT'ing it and just routing between the 2 then controlling with a ACL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example: 192.168.1.0/24 &amp;lt;-----&amp;gt; PIX &amp;lt;-----&amp;gt; 172.16.1.0/24&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ip address outside 172.16.1.254 255.255.255.0&lt;/P&gt;&lt;P&gt;ip address inside 192.168.1.254 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;route outside 192.168.1.0 255.255.255.0 172.16.1.254 1&lt;/P&gt;&lt;P&gt;route inside 172.16.1.0 255.255.255.0 192.168.1.254 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list local_A_in permit tcp host 172.16.1.1 host 192.168.1.1 eq www&lt;/P&gt;&lt;P&gt;access-group local_A_in in interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list local_B_in permit tcp host 192.168.1.2 host 172.16.1.2 eq https&lt;/P&gt;&lt;P&gt;access-group local_B_in in interface inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where am I going wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;--Mark&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 10:19:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782929#M1004124</guid>
      <dc:creator>mark.johnson</dc:creator>
      <dc:date>2019-03-11T10:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/Route question</title>
      <link>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782930#M1004125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your goal is not to do any NAT between those network, simply do a nat 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list no-nat permit ip 172.16.1.0 255.255.255.0 192.168.1.0 255.255.255.0&lt;/P&gt;&lt;P&gt;access-list no-nat permit ip 192.168.1.0 255.255.255.0 172.16.1.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;nat (inside) 0 no-nat&lt;/P&gt;&lt;P&gt;nat (outside) 0 no-nat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 11:19:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782930#M1004125</guid>
      <dc:creator>dominic.caron</dc:creator>
      <dc:date>2007-05-24T11:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/Route question</title>
      <link>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782931#M1004126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your help Dominic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would I still leave in the static routes or could I use the ones the PIX finds?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;additionally, if I where to add an additional interface to the PIX, would look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ip address outside 172.16.1.254 255.255.255.0 &lt;/P&gt;&lt;P&gt;ip address inside 192.168.1.254 255.255.255.0&lt;/P&gt;&lt;P&gt;ip address dmz 10.10.10.254 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list no-nat permit ip 172.16.1.0 255.255.255.0 192.168.1.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;access-list no-nat permit ip 172.16.1.0 255.255.255.0 10.10.10.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;access-list no-nat permit ip 192.168.1.0 255.255.255.0 172.16.1.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;access-list no-nat permit ip 192.168.1.0 255.255.255.0 10.10.10.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;access-list no-nat permit ip 10.10.10.0 255.255.255.0 172.16.1.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;access-list no-nat permit ip 10.10.10.0 255.255.255.0 192.168.1.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nat (inside) 0 no-nat &lt;/P&gt;&lt;P&gt;nat (outside) 0 no-nat&lt;/P&gt;&lt;P&gt;nat (dmz) 0 no-nat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;--Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 11:40:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782931#M1004126</guid>
      <dc:creator>mark.johnson</dc:creator>
      <dc:date>2007-05-24T11:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/Route question</title>
      <link>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782932#M1004127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your routing configuration is wrong, remove those static routes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is your network built, do you have a router in each subnet?  &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 12:13:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782932#M1004127</guid>
      <dc:creator>dominic.caron</dc:creator>
      <dc:date>2007-05-24T12:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/Route question</title>
      <link>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782933#M1004128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;understood on the routes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no router in each subnet. I want to segment the 2 networks with the firewall, but I don't want to put a router in - if that makes sense?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 12:37:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782933#M1004128</guid>
      <dc:creator>mark.johnson</dc:creator>
      <dc:date>2007-05-24T12:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/Route question</title>
      <link>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782934#M1004129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If there is not router (and no internet gateway) and if the default route of the host PCs is the firewall, the firewall will route traffic between it's connected subnet with no need to add any config.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 14:48:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782934#M1004129</guid>
      <dc:creator>dominic.caron</dc:creator>
      <dc:date>2007-05-24T14:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/Route question</title>
      <link>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782935#M1004130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the help Dominic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;--Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 15:37:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-route-question/m-p/782935#M1004130</guid>
      <dc:creator>mark.johnson</dc:creator>
      <dc:date>2007-05-24T15:37:57Z</dc:date>
    </item>
  </channel>
</rss>

