<?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 Problem: Accessing DMZ trough VPN in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/problem-accessing-dmz-trough-vpn/m-p/2331244#M342473</link>
    <description>&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the following problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the current configuration my PVN clients cannot access the DMZ (inside network is working).&lt;/P&gt;&lt;P&gt;When I add the following nat rule: &lt;SPAN style="font-size: 10pt;"&gt;nat (inside,outside) source static any any destination static VPN_pool VPN_pool&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;it works, but now the server in the DMZ cannot access server in the internal network. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;What can I do?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Mar 2019 02:43:59 GMT</pubDate>
    <dc:creator>Christian Balzereit</dc:creator>
    <dc:date>2019-03-12T02:43:59Z</dc:date>
    <item>
      <title>Problem: Accessing DMZ trough VPN</title>
      <link>https://community.cisco.com/t5/network-security/problem-accessing-dmz-trough-vpn/m-p/2331244#M342473</link>
      <description>&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the following problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the current configuration my PVN clients cannot access the DMZ (inside network is working).&lt;/P&gt;&lt;P&gt;When I add the following nat rule: &lt;SPAN style="font-size: 10pt;"&gt;nat (inside,outside) source static any any destination static VPN_pool VPN_pool&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;it works, but now the server in the DMZ cannot access server in the internal network. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;What can I do?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 02:43:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/problem-accessing-dmz-trough-vpn/m-p/2331244#M342473</guid>
      <dc:creator>Christian Balzereit</dc:creator>
      <dc:date>2019-03-12T02:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem: Accessing DMZ trough VPN</title>
      <link>https://community.cisco.com/t5/network-security/problem-accessing-dmz-trough-vpn/m-p/2331245#M342474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would suggest specifying the actual source networks behind &lt;STRONG&gt;"inside"&lt;/STRONG&gt; and &lt;STRONG&gt;"dmz"&lt;/STRONG&gt; interface in the NAT configuration instead of using&lt;STRONG&gt; "any"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you actuall have a &lt;STRONG&gt;"dmz"&lt;/STRONG&gt; interface then you naturally have to make a NAT configuration for it too for the connections from VPN Clients to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets say we have network 10.0.0.0/24 on the &lt;STRONG&gt;"inside"&lt;/STRONG&gt; and network 192.168.0.0/24 on the &lt;STRONG&gt;"dmz"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the VPN related NAT configuration might look something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object network INSIDE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; subnet 10.0.0.0 255.255.255.0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object network DMZ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; subnet 192.168.0.0 255.255.255.0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;nat (inside,outside) source static INSIDE INSIDE destination static VPN_pool VPN_pool&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;nat (dmz,outside) source static DMZ DMZ destination static VPN_pool VPN_pool&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its naturally also possible that some other NAT configuration is causing problems here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But presuming other configurations on the firewall are correct then the above NAT configurations should be the correct ones for VPN access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jouni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 13:24:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/problem-accessing-dmz-trough-vpn/m-p/2331245#M342474</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-09-26T13:24:16Z</dc:date>
    </item>
    <item>
      <title>Problem: Accessing DMZ trough VPN</title>
      <link>https://community.cisco.com/t5/network-security/problem-accessing-dmz-trough-vpn/m-p/2331246#M342475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Jouni,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still have the same problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enclosed my NAT configuration:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nat (inside,outside) source static LAN LAN destination static VPN-POOL VPN-POOL&lt;/P&gt;&lt;P&gt;nat (DMZ,outside) source static DMZ DMZ destination static VPN-POOL VPN-POOL&lt;/P&gt;&lt;P&gt; nat (DMZ,outside) static x.x.x.x&lt;/P&gt;&lt;P&gt; nat (DMZ,outside) static &lt;SPAN style="font-size: 10pt;"&gt;x.x.x.x&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; some more statics &lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; nat (inside,outside) dynamic OUTSIDE_Addresses&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Sep 2013 06:10:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/problem-accessing-dmz-trough-vpn/m-p/2331246#M342475</guid>
      <dc:creator>Christian Balzereit</dc:creator>
      <dc:date>2013-09-27T06:10:51Z</dc:date>
    </item>
  </channel>
</rss>

