<?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 NAT problem, only nat traffic against wan interface in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/nat-problem-only-nat-traffic-against-wan-interface/m-p/1594980#M595674</link>
    <description>&lt;P&gt;Got multiple vlans, some of them have internal subnets. I only want to SNAT the traffic from vlans with internal subnets that have destination on wan interface. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vlan580 = 10.10.10.0/24&lt;/P&gt;&lt;P&gt;vlan581 = 1.2.8.0/24&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this, vlan580 cant reach vlan581&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list vlan580_nat0_outbound extended permit ip object-group DM_INLINE_NETWORK_58 172.16.20.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;access-list vlan580_nat0_outbound extended permit ip object-group DM_INLINE_NETWORK_58 10.10.10.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;nat (vlan580) 0 access-list vlan580_nat0_outbound&lt;/P&gt;&lt;P&gt;nat (vlan580) 1 0.0.0.0 0.0.0.0&lt;/P&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;But, removing the 'nat (vlan580) 1 0.0.0.0 0.0.0.0' makes it work. So how can I exempt vlan581 (and a list of other vlans)?&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 19:28:57 GMT</pubDate>
    <dc:creator>3moloz123</dc:creator>
    <dc:date>2019-03-11T19:28:57Z</dc:date>
    <item>
      <title>NAT problem, only nat traffic against wan interface</title>
      <link>https://community.cisco.com/t5/network-security/nat-problem-only-nat-traffic-against-wan-interface/m-p/1594980#M595674</link>
      <description>&lt;P&gt;Got multiple vlans, some of them have internal subnets. I only want to SNAT the traffic from vlans with internal subnets that have destination on wan interface. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vlan580 = 10.10.10.0/24&lt;/P&gt;&lt;P&gt;vlan581 = 1.2.8.0/24&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this, vlan580 cant reach vlan581&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list vlan580_nat0_outbound extended permit ip object-group DM_INLINE_NETWORK_58 172.16.20.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;access-list vlan580_nat0_outbound extended permit ip object-group DM_INLINE_NETWORK_58 10.10.10.0 255.255.255.0 &lt;/P&gt;&lt;P&gt;nat (vlan580) 0 access-list vlan580_nat0_outbound&lt;/P&gt;&lt;P&gt;nat (vlan580) 1 0.0.0.0 0.0.0.0&lt;/P&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;But, removing the 'nat (vlan580) 1 0.0.0.0 0.0.0.0' makes it work. So how can I exempt vlan581 (and a list of other vlans)?&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 19:28:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-problem-only-nat-traffic-against-wan-interface/m-p/1594980#M595674</guid>
      <dc:creator>3moloz123</dc:creator>
      <dc:date>2019-03-11T19:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: NAT problem, only nat traffic against wan interface</title>
      <link>https://community.cisco.com/t5/network-security/nat-problem-only-nat-traffic-against-wan-interface/m-p/1594981#M595676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please share the security level for both vlan580 and vlan581?&lt;/P&gt;&lt;P&gt;You can configure NAT exemption from high to low security level interface,ie:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;assuming that vlan 580 has higher security level than vlan 581&lt;/SPAN&gt;, you can add the following access-list:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list vlan580_nat0_outbound extended permit ip 10.10.10.0 255.255.255.0 1.2.8.0 255.255.255.0&lt;/P&gt;&lt;P&gt;and acl: vlan580_nat0_outbound has been applied to: nat (vlan580) 0 access-list vlan580_nat0_outbound&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However,&lt;SPAN style="text-decoration: underline;"&gt; if vlan 580 has lower security level than vlan 581&lt;/SPAN&gt;, then you would need to configure the following (assuming that you don't have any NAT 0 with ACL applied to vlan581 already):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vlan581_nat0 extended permit ip 1.2.8.0 255.255.255.0 10.10.10.0 255.255.255.0&lt;/P&gt;&lt;P&gt;nat (vlan581) 0 access-list vlan581_nat0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you however have NAT 0 for vlan581, just add to the access-list with the above permit from "1.2.8.0 255.255.255.0" to "10.10.10.0 255.255.255.0"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Dec 2010 22:20:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-problem-only-nat-traffic-against-wan-interface/m-p/1594981#M595676</guid>
      <dc:creator>Jennifer Halim</dc:creator>
      <dc:date>2010-12-30T22:20:35Z</dc:date>
    </item>
  </channel>
</rss>

