<?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 Zone Based Firewall + Internal CISCO VPN Client in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677617#M561122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ESP is an IP protocol and cannot be inspected in layer 3/4 format. This traffic, since it comes encrypted, the router is not able to inspect its information at layer 4. Hence, is not going to pass. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you need to do is the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take out the following ACE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 114 permit esp &lt;PCLAN network=""&gt; 0.0.0.255 any&lt;/PCLAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a separate ACL &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 115 permit esp &lt;PCLAN network=""&gt; 0.0.0.255 any&lt;/PCLAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And do the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type inspect ESP-TRAFFIC &lt;/P&gt;&lt;P&gt; match access-group 115&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, add it to the policy map and put PASS instead of the inspect &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map type inspect pclan-outside-policy&lt;/P&gt;&lt;P&gt; class ESP-TRAFFIC &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; pass &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This class map needs to be on outside to inside as well with PASS action too. This is because since it is not being inspected by the stateful table, the router has no way to track the pakcets. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this info is useful. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jun 2011 20:08:48 GMT</pubDate>
    <dc:creator>Maykol Rojas</dc:creator>
    <dc:date>2011-06-07T20:08:48Z</dc:date>
    <item>
      <title>Zone Based Firewall + Internal CISCO VPN Client</title>
      <link>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677616#M561121</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've setup a CISCO 871 which receives DHCP IP address on WAN interface Fa4 and DHCP-assigned static IP Address on virtual-ppp1.&amp;nbsp; The static address is used for site-to-site VPN's, while I've planned the DHCP address for standard web access and CISCO VPN Client dial-out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internally, I've created 2 VLAN's, one for standard PC's with access to the remote sites via site-to-site and cisco client, and the other for a 'secured' area with only HTTP/S allowed out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've created 4 zones:&lt;/P&gt;&lt;P&gt;VPN (on interface virtual-pp1)&lt;/P&gt;&lt;P&gt;OUTSIDE (on WAN interface Fa4)&lt;/P&gt;&lt;P&gt;PCLAN (interface vlan1)&lt;/P&gt;&lt;P&gt;WEB (interface vlan2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Overall, traffic is working as expected i.e. &lt;/P&gt;&lt;P&gt;- web traffic only is allowed from WEB zone to OUTSIDE zone&lt;/P&gt;&lt;P&gt;- access over site-to-site is available from PCLAN zone to VPN zone etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm stuck on one issue though....&lt;/P&gt;&lt;P&gt;Clients in the PCLAN should also be allowed to dial-out using CISCO VPN client to remote sites via the OUTSIDE interface.&amp;nbsp; This is partially working because the client does log into a remote site, however I cannot ping or rdp remote stations once connected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"ip inspect log drop-packets" does not reveal dropped packets when trying to ping or rdp, so I'm a little stuck as to what the problem is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The relevant config for the PCLAN-OUTSIDE connection is below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type inspect match-any pclan-outside-traffic&lt;/P&gt;&lt;P&gt;match protocol icmp&lt;/P&gt;&lt;P&gt;match access-group 114&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map type inspect pclan-outside-policy&lt;/P&gt;&lt;P&gt;class type inspect pclan-outside-traffic&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect &lt;/P&gt;&lt;P&gt;class class-default&lt;/P&gt;&lt;P&gt;&amp;nbsp; drop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zone security outside&lt;/P&gt;&lt;P&gt;zone security web&lt;/P&gt;&lt;P&gt;zone security pclan&lt;/P&gt;&lt;P&gt;zone security vpn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zone-pair security pclan-outside-pair source pclan destination outside&lt;/P&gt;&lt;P&gt;service-policy type inspect pclan-outside-policy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface FastEthernet0&lt;/P&gt;&lt;P&gt;description PC-LAN&lt;/P&gt;&lt;P&gt;duplex full&lt;/P&gt;&lt;P&gt;speed 100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface FastEthernet4&lt;/P&gt;&lt;P&gt;description $ETH-WAN$&lt;/P&gt;&lt;P&gt;ip address dhcp&lt;/P&gt;&lt;P&gt;ip nat outside&lt;/P&gt;&lt;P&gt;ip virtual-reassembly&lt;/P&gt;&lt;P&gt;zone-member security outside&lt;/P&gt;&lt;P&gt;speed 100&lt;/P&gt;&lt;P&gt;full-duplex&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 114 remark ACL_PCLAN_to_OUTSIDE&lt;/P&gt;&lt;P&gt;access-list 114 permit udp &amp;lt;pclan network&amp;gt; 0.0.0.255 any eq isakmp&lt;/P&gt;&lt;P&gt;access-list 114 permit esp &amp;lt;pclan network&amp;gt; 0.0.0.255 any&lt;/P&gt;&lt;P&gt;access-list 114 permit udp &amp;lt;pclan network&amp;gt; 0.0.0.255 any eq non500-isakmp&lt;/P&gt;&lt;P&gt;access-list 114 permit ahp &amp;lt;pclan network&amp;gt; 0.0.0.255 any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm hoping someone can point out why the CISCO VPN client isn't returning traffic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mario&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 20:43:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677616#M561121</guid>
      <dc:creator>mariov652</dc:creator>
      <dc:date>2019-03-11T20:43:04Z</dc:date>
    </item>
    <item>
      <title>Zone Based Firewall + Internal CISCO VPN Client</title>
      <link>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677617#M561122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ESP is an IP protocol and cannot be inspected in layer 3/4 format. This traffic, since it comes encrypted, the router is not able to inspect its information at layer 4. Hence, is not going to pass. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you need to do is the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take out the following ACE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 114 permit esp &lt;PCLAN network=""&gt; 0.0.0.255 any&lt;/PCLAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a separate ACL &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 115 permit esp &lt;PCLAN network=""&gt; 0.0.0.255 any&lt;/PCLAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And do the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type inspect ESP-TRAFFIC &lt;/P&gt;&lt;P&gt; match access-group 115&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, add it to the policy map and put PASS instead of the inspect &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map type inspect pclan-outside-policy&lt;/P&gt;&lt;P&gt; class ESP-TRAFFIC &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; pass &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This class map needs to be on outside to inside as well with PASS action too. This is because since it is not being inspected by the stateful table, the router has no way to track the pakcets. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this info is useful. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 20:08:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677617#M561122</guid>
      <dc:creator>Maykol Rojas</dc:creator>
      <dc:date>2011-06-07T20:08:48Z</dc:date>
    </item>
    <item>
      <title>Zone Based Firewall + Internal CISCO VPN Client</title>
      <link>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677618#M561123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your detailed explanation, it's helped me understand this better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've applied the config below, but there is still something missing though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried enhancing the logging with regards to esp traffic, but nothing additional is logged.&amp;nbsp; I've also temporarily allowed "esp any any" to avoid incorrect address allocation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Can you (or anyone else) see why this traffic is not been logged?&lt;/P&gt;&lt;P&gt;- Are my zone pairs and policies correct?&amp;nbsp; I've commented the sections I've added...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter-map type inspect LOG #Enable logging to firewall (ip inspect log drop-packets already enabled)&lt;/P&gt;&lt;P&gt;&amp;nbsp; audit-trail on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type inspect match-any pclan-outside-traffic&lt;BR /&gt; match protocol http&lt;BR /&gt; match protocol https&lt;BR /&gt; match protocol dns&lt;BR /&gt; match protocol icmp&lt;BR /&gt; match protocol ntp&lt;BR /&gt; match access-group 114&lt;/P&gt;&lt;P&gt;class-map type inspect match-any ESP-TRAFFIC&lt;BR /&gt; match access-group 115&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map type inspect pclan-outside-policy # Allow this traffic out&lt;BR /&gt; class type inspect pclan-outside-traffic&lt;BR /&gt;&amp;nbsp; inspect &lt;BR /&gt; class type inspect ESP-TRAFFIC&lt;BR /&gt;&amp;nbsp; pass log&lt;BR /&gt; class class-default&lt;BR /&gt;&amp;nbsp; drop&lt;BR /&gt;policy-map type inspect outside-pclan-policy #Allow this traffic back&lt;BR /&gt; class type inspect ESP-TRAFFIC&lt;BR /&gt;&amp;nbsp; pass log&lt;BR /&gt; class class-default&lt;BR /&gt;&amp;nbsp; drop&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;zone security outside&lt;BR /&gt;zone security dmz&lt;BR /&gt;zone security pclan&lt;BR /&gt;zone security vpn&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;zone-pair security pclan-outside-pair source pclan destination outside&lt;BR /&gt; service-policy type inspect pclan-outside-policy&lt;BR /&gt;zone-pair security outside-pclan-pair source outside destination pclan #To allow esp traffic back&lt;BR /&gt; service-policy type inspect outside-pclan-policy&lt;BR /&gt;!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;access-list 114 remark ACL_PCLAN_to_OUTSIDE&lt;BR /&gt;access-list 114 permit udp &lt;PCLAN network=""&gt; 0.0.0.255 any eq isakmp&lt;BR /&gt;access-list 114 permit udp &lt;PCLAN network=""&gt; 0.0.0.255 any eq non500-isakmp&lt;/PCLAN&gt;&lt;/PCLAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 115 remark ACL_ESP_VPN #Allow esp from/to all&lt;BR /&gt;access-list 115 permit esp any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mario&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2011 11:15:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677618#M561123</guid>
      <dc:creator>mariov652</dc:creator>
      <dc:date>2011-06-08T11:15:33Z</dc:date>
    </item>
    <item>
      <title>Zone Based Firewall + Internal CISCO VPN Client</title>
      <link>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677619#M561124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some additional info...&amp;nbsp; It looks like the Access list 115 is not used as there are no hits on that rule-set&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# sh access-lists&lt;/P&gt;&lt;P&gt;Extended IP access list 114&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10 permit udp 172.16.11.0 0.0.0.255 any eq isakmp (4 matches)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20 permit udp 172.16.11.0 0.0.0.255 any eq non500-isakmp (4 matches)&lt;/P&gt;&lt;P&gt;Extended IP access list 115&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10 permit esp any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2011 12:11:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677619#M561124</guid>
      <dc:creator>mariov652</dc:creator>
      <dc:date>2011-06-08T12:11:58Z</dc:date>
    </item>
    <item>
      <title>Zone Based Firewall + Internal CISCO VPN Client</title>
      <link>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677620#M561125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using NAT traversal on the endpoint? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2011 22:27:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677620#M561125</guid>
      <dc:creator>Maykol Rojas</dc:creator>
      <dc:date>2011-06-08T22:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Zone Based Firewall + Internal CISCO VPN Client</title>
      <link>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677621#M561126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SOLVED...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had a second device with a simple two-zone configuration which was working fine.&amp;nbsp; After applying this configuration to my test device, I still had the same issue from my test system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This made no sense because this config was working on another part of the network!&amp;nbsp; Anyway, re-installing the CISCO VPN client and rebooting on my test PC fixed this issue for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- How do I mark this post as answered as it seems I can only mark 'answered' for other people's posts?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the working config in case it assists someone else in the future.&amp;nbsp; If you see any security improvements that could be made, please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CISCO 871, advancedsecurity IOS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4 security zones: &lt;/P&gt;&lt;P&gt;web - internal clients allowed HTTP/HTTPS access only.&lt;/P&gt;&lt;P&gt;pclan - internal clients allowed access to site-to-site clients and rdp to stations within the web zone.&lt;/P&gt;&lt;P&gt;outside - int fa4, DHCP from ISP dedicated for web access.&lt;/P&gt;&lt;P&gt;vpn - int virtual-ppp1 from ISP via L2TP for static IP,&amp;nbsp; dedicated to site-to-site connection only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;no service pad&lt;BR /&gt;service timestamps debug datetime msec localtime show-timezone&lt;BR /&gt;service timestamps log datetime msec localtime show-timezone&lt;BR /&gt;service password-encryption&lt;BR /&gt;!&lt;BR /&gt;hostname xyz&lt;BR /&gt;!&lt;BR /&gt;boot-start-marker&lt;BR /&gt;boot-end-marker&lt;BR /&gt;!&lt;BR /&gt;logging message-counter syslog&lt;BR /&gt;logging buffered 4096&lt;BR /&gt;enable secret xxxxxx&lt;BR /&gt;!&lt;BR /&gt;aaa new-model&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;aaa authentication login default local&lt;BR /&gt;aaa authorization exec default local &lt;BR /&gt;!&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;!&lt;BR /&gt;aaa session-id common&lt;BR /&gt;clock timezone GMT+1 1&lt;BR /&gt;clock summer-time GMT+1 recurring last Sun Mar 2:00 last Sun Oct 2:00&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;no dot11 syslog&lt;BR /&gt;no ip source-route&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;ip cef&lt;BR /&gt;no ip domain lookup&lt;BR /&gt;ip domain name xxxxxx&lt;BR /&gt;no ipv6 cef&lt;BR /&gt;multilink bundle-name authenticated&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;username xxxxx privilege 15 secret xxxxxxx&lt;BR /&gt;! &lt;BR /&gt;!&lt;BR /&gt;crypto isakmp policy 1&lt;BR /&gt;encr 3des&lt;BR /&gt;authentication pre-share&lt;BR /&gt;group 2&lt;BR /&gt;crypto isakmp key xxxx address x.x.x.x&lt;BR /&gt;crypto isakmp nat keepalive 10&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac &lt;BR /&gt;!&lt;BR /&gt;crypto map SDM_CMAP_1 1 ipsec-isakmp &lt;BR /&gt;description Tunnel tox.x.x.x&lt;BR /&gt;set peer x.x.x.x&lt;BR /&gt;set transform-set ESP-3DES-SHA &lt;BR /&gt;match address 100&lt;BR /&gt;!&lt;BR /&gt;archive&lt;BR /&gt;log config&lt;BR /&gt;&amp;nbsp; hidekeys&lt;BR /&gt;!&lt;BR /&gt;!&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;!&lt;BR /&gt;class-map type inspect match-any outside-self-traffic&lt;BR /&gt;match access-group 110&lt;BR /&gt;class-map type inspect match-any vpn-self-traffic&lt;BR /&gt;match access-group 109&lt;BR /&gt;class-map type inspect match-any pclan-outside-traffic&lt;BR /&gt;match protocol icmp&lt;BR /&gt;match protocol ntp&lt;BR /&gt;match access-group 114&lt;BR /&gt;class-map type inspect match-any web-outside-traffic&lt;BR /&gt;match protocol http&lt;BR /&gt;match protocol https&lt;BR /&gt;match protocol dns&lt;BR /&gt;match protocol icmp&lt;BR /&gt;match protocol ntp&lt;BR /&gt;class-map type inspect match-any pclan-web-traffic&lt;BR /&gt;match protocol icmp&lt;BR /&gt;match access-group 112&lt;BR /&gt;class-map type inspect match-any pclan-vpn-traffic&lt;BR /&gt;match protocol icmp&lt;BR /&gt;match access-group 113&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;policy-map type inspect pclan-web-policy&lt;BR /&gt;class type inspect pclan-web-traffic&lt;BR /&gt;&amp;nbsp; inspect &lt;BR /&gt;class class-default&lt;BR /&gt;&amp;nbsp; drop&lt;BR /&gt;policy-map type inspect pclan-outside-policy&lt;BR /&gt;class type inspect pclan-outside-traffic&lt;BR /&gt;&amp;nbsp; inspect &lt;BR /&gt;class class-default&lt;BR /&gt;&amp;nbsp; drop&lt;BR /&gt;policy-map type inspect web-outside-policy&lt;BR /&gt;class type inspect web-outside-traffic&lt;BR /&gt;&amp;nbsp; inspect &lt;BR /&gt;class class-default&lt;BR /&gt;&amp;nbsp; drop&lt;BR /&gt;policy-map type inspect pclan-vpn-policy&lt;BR /&gt;class type inspect pclan-vpn-traffic&lt;BR /&gt;&amp;nbsp; inspect &lt;BR /&gt;class class-default&lt;BR /&gt;&amp;nbsp; drop&lt;BR /&gt;policy-map type inspect outside-self-policy&lt;BR /&gt;class type inspect outside-self-traffic&lt;BR /&gt;&amp;nbsp; pass&lt;BR /&gt;class class-default&lt;BR /&gt;&amp;nbsp; drop&lt;BR /&gt;policy-map type inspect vpn-self-policy&lt;BR /&gt;class type inspect vpn-self-traffic&lt;BR /&gt;&amp;nbsp; inspect &lt;BR /&gt;class class-default&lt;BR /&gt;&amp;nbsp; drop&lt;BR /&gt;!&lt;BR /&gt;pseudowire-class ISP&lt;BR /&gt;encapsulation l2tpv2&lt;BR /&gt;ip local interface FastEthernet4&lt;BR /&gt;!&lt;BR /&gt;zone security outside&lt;BR /&gt;zone security web&lt;BR /&gt;zone security pclan&lt;BR /&gt;zone security vpn&lt;BR /&gt;zone-pair security vpn-self-pair source vpn destination self&lt;BR /&gt;service-policy type inspect vpn-self-policy&lt;BR /&gt;zone-pair security outside-self-pair source outside destination self&lt;BR /&gt;service-policy type inspect outside-self-policy&lt;BR /&gt;zone-pair security web-outside-pair source web destination outside&lt;BR /&gt;service-policy type inspect web-outside-policy&lt;BR /&gt;zone-pair security pclan-web-pair source pclan destination web&lt;BR /&gt;service-policy type inspect pclan-web-policy&lt;BR /&gt;zone-pair security pclan-vpn-pair source pclan destination vpn&lt;BR /&gt;service-policy type inspect pclan-vpn-policy&lt;BR /&gt;zone-pair security pclan-outside-pair source pclan destination outside&lt;BR /&gt;service-policy type inspect pclan-outside-policy&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;interface FastEthernet0&lt;BR /&gt;description PC-LAN&lt;BR /&gt;duplex full&lt;BR /&gt;speed 100&lt;BR /&gt;!&lt;BR /&gt;interface FastEthernet1&lt;BR /&gt;description web-LAN&lt;BR /&gt;duplex full&lt;BR /&gt;speed 100&lt;BR /&gt;!&lt;BR /&gt;interface FastEthernet2&lt;BR /&gt;shutdown&lt;BR /&gt;!&lt;BR /&gt;interface FastEthernet3&lt;BR /&gt;shutdown&lt;BR /&gt;!&lt;BR /&gt;interface FastEthernet4&lt;BR /&gt;description $ETH-WAN$&lt;BR /&gt;ip address dhcp&lt;BR /&gt;ip nat outside&lt;BR /&gt;ip virtual-reassembly&lt;BR /&gt;zone-member security outside&lt;BR /&gt;speed 100&lt;BR /&gt;full-duplex&lt;BR /&gt;!&lt;BR /&gt;interface Virtual-PPP1&lt;BR /&gt;description L2TP dialer to ISP&lt;BR /&gt;ip address negotiated&lt;BR /&gt;zone-member security vpn&lt;BR /&gt;no cdp enable&lt;BR /&gt;ppp lcp predictive&lt;BR /&gt;ppp chap hostname xyz&lt;BR /&gt;ppp chap password xxxxxxxx&lt;BR /&gt;ppp ipcp predictive&lt;BR /&gt;pseudowire x.x.x.x 1 pw-class ISP&lt;BR /&gt;crypto map SDM_CMAP_1&lt;BR /&gt;!&lt;BR /&gt;interface Vlan1&lt;BR /&gt;ip address x.x.x.x 255.255.255.0&lt;BR /&gt;ip nat inside&lt;BR /&gt;ip virtual-reassembly&lt;BR /&gt;zone-member security pclan&lt;BR /&gt;!&lt;BR /&gt;interface Vlan2&lt;BR /&gt;ip address x.x.x.x 255.255.255.0&lt;BR /&gt;ip nat inside&lt;BR /&gt;ip virtual-reassembly&lt;BR /&gt;zone-member security web&lt;BR /&gt;!&lt;BR /&gt;no ip forward-protocol nd&lt;BR /&gt;ip route &lt;REMOTE lan="" s2s=""&gt; 255.255.255.0 Virtual-PPP1 permanent&lt;BR /&gt;no ip http server&lt;BR /&gt;ip http access-class 1&lt;BR /&gt;ip http authentication local&lt;BR /&gt;no ip http secure-server&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;ip nat inside source route-map SDM_RMAP_1 interface FastEthernet4 overload&lt;BR /&gt;!&lt;BR /&gt;access-list 1 remark HTTP Device Access&lt;BR /&gt;access-list 1 permit x.x.x.x 0.0.0.255&lt;BR /&gt;access-list 12 remark snmp&lt;BR /&gt;access-list 12 permit &lt;LOCAL host=""&gt;&lt;BR /&gt;access-list 100 remark IPSec Rule&lt;BR /&gt;access-list 100 permit ip &lt;PCLAN network=""&gt; 0.0.0.255 &lt;REMOTE lan="" s2s=""&gt; 0.0.0.255&lt;BR /&gt;access-list 101 remark NAT-RULES&lt;BR /&gt;access-list 101 deny&amp;nbsp;&amp;nbsp; ip &lt;PCLAN network=""&gt; 0.0.0.255 &lt;REMOTE lan="" s2s=""&gt; 0.0.0.255&lt;BR /&gt;access-list 101 permit ip &lt;PCLAN network=""&gt; 0.0.0.255 any&lt;BR /&gt;access-list 101 permit ip &lt;WEB network=""&gt; 0.0.0.255 any&lt;BR /&gt;access-list 106 remark Device-VTY-Access&lt;BR /&gt;access-list 106 permit ip x.x.x.x 0.0.0.255 any&lt;BR /&gt;access-list 109 remark ACL_VPN_to_Self&lt;BR /&gt;access-list 109 permit udp host x.x.x.x any eq isakmp&lt;BR /&gt;access-list 110 remark ACL_Outside_to_Self&lt;BR /&gt;access-list 110 permit udp host x.x.x.x any eq ntp&lt;BR /&gt;access-list 110 permit udp host x.x.x.x any eq ntp&lt;BR /&gt;access-list 110 permit udp x.x.x.x 0.0.0.255 any eq 1701&lt;BR /&gt;access-list 110 permit udp x.x.x.x 0.0.0.255 any eq bootpc&lt;BR /&gt;access-list 110 permit udp x.x.x.x 0.0.0.255 any eq bootpc&lt;BR /&gt;access-list 112 remark ACL_PCLAN_to_web&lt;BR /&gt;access-list 112 permit tcp &lt;PCLAN network=""&gt; 0.0.0.255 &lt;WEB network=""&gt; 0.0.0.255 eq 3389&lt;BR /&gt;access-list 113 remark ACL_PCLAN_to_VPN&lt;BR /&gt;access-list 113 permit tcp &lt;PCLAN network=""&gt; 0.0.0.255 &lt;WEB network=""&gt; 0.0.0.255 eq 3389&lt;BR /&gt;access-list 114 remark ACL_PCLAN_to_OUTSIDE&lt;BR /&gt;access-list 114 permit udp &lt;PCLAN network=""&gt; 0.0.0.255 any eq isakmp&lt;BR /&gt;access-list 114 permit udp &lt;PCLAN network=""&gt; 0.0.0.255 any eq non500-isakmp&lt;/PCLAN&gt;&lt;/PCLAN&gt;&lt;/WEB&gt;&lt;/PCLAN&gt;&lt;/WEB&gt;&lt;/PCLAN&gt;&lt;/WEB&gt;&lt;/PCLAN&gt;&lt;/REMOTE&gt;&lt;/PCLAN&gt;&lt;/REMOTE&gt;&lt;/PCLAN&gt;&lt;/LOCAL&gt;&lt;/REMOTE&gt;&lt;/P&gt;&lt;P&gt;no cdp run&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;route-map SDM_RMAP_1 permit 1&lt;BR /&gt;match ip address 101&lt;BR /&gt;!&lt;BR /&gt;snmp-server community xyz RO 12&lt;BR /&gt;!&lt;BR /&gt;control-plane&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;line con 0&lt;BR /&gt;exec-timeout 5 0&lt;BR /&gt;password xxxxxx&lt;BR /&gt;no modem enable&lt;BR /&gt;transport output telnet&lt;BR /&gt;line aux 0&lt;BR /&gt;exec-timeout 0 1&lt;BR /&gt;password xxxxxxx&lt;BR /&gt;no exec&lt;BR /&gt;line vty 0 4&lt;BR /&gt;access-class 106 in&lt;BR /&gt;authorization exec local_author&lt;BR /&gt;transport input telnet ssh&lt;BR /&gt;!&lt;BR /&gt;scheduler max-task-time 5000&lt;BR /&gt;ntp server x.x.x.x source Vlan1&lt;BR /&gt;ntp server x.x.x.x source Vlan1&lt;BR /&gt;end&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jun 2011 08:50:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/zone-based-firewall-internal-cisco-vpn-client/m-p/1677621#M561126</guid>
      <dc:creator>mariov652</dc:creator>
      <dc:date>2011-06-09T08:50:14Z</dc:date>
    </item>
  </channel>
</rss>

