<?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: Need help with DMZ access lists in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/need-help-with-dmz-access-lists/m-p/2092273#M392081</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following NAT is incorrect:&lt;/P&gt;&lt;P&gt;object network obj_dmz_network&lt;/P&gt;&lt;P&gt;nat (Inside,dmz) static obj_dmz_network&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should have been:&lt;/P&gt;&lt;P&gt;object network obj_10.0.0.0&lt;/P&gt;&lt;P&gt;&amp;nbsp; subnet 10.0.0.0 255.0.0.0&lt;/P&gt;&lt;P&gt;&amp;nbsp; nat (Inside,dmz) static obj_10.0.0.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then to provide granular access to the inside, you would need to place all the specific lines at the top of the ACL, then deny to 10.0.0.0, and finally permit any as follows:&lt;/P&gt;&lt;P&gt;access-list dmz_access permit tcp 172.16.29.0 255.255.255.0 10.0.0.0 255.0.0.0 eq 80&lt;/P&gt;&lt;P&gt;access-list dmz_access permit tcp 172.16.29.0 255.255.255.0 10.0.0.0 255.0.0.0 eq 443&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;access-list dmz_access deny ip 172.16.29.0 255.255.255.0 10.0.0.0 255.0.0.0&lt;/P&gt;&lt;P&gt;access-list dmz_access permit tcp 172.16.29.0 255.255.255.0 any eq 80&lt;/P&gt;&lt;P&gt;access-list dmz_access permit tcp 172.16.29.0 255.255.255.0 any eq 443&lt;/P&gt;&lt;P&gt;access-list dmz_access permit udp 172.16.29.0 255.255.255.0 any eq 53&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>Tue, 29 Jan 2013 01:28:14 GMT</pubDate>
    <dc:creator>Jennifer Halim</dc:creator>
    <dc:date>2013-01-29T01:28:14Z</dc:date>
    <item>
      <title>Need help with DMZ access lists</title>
      <link>https://community.cisco.com/t5/network-security/need-help-with-dmz-access-lists/m-p/2092272#M392080</link>
      <description>&lt;P&gt;Hello Everyone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have just setup a new ASA 5525 and am configuring DMZ.&amp;nbsp; As a test i have been able to successfully publish web and rdp from outside to inside and from outside to DMZ.&amp;nbsp; My internal clients can successfullly communicate with DMZ hosts.&amp;nbsp; Where I am running into problems is allowing the DMZ host access to internal resources.&amp;nbsp; Whenever i apply an access list the DMZ interface it then blocks access to the outside interface because of the implicit deny.&amp;nbsp; What i want is to be able give DMZ hosts access to internal resouces but also be able to allow then access to the internet for basic http https.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question is how do i give hosts granular access to internal resouces from the DMZ without killing their acces to the outside.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently from outside i can access both DMZ host and internal host on port 80 and 3389.&amp;nbsp; From DMZ i can access internal host on port 80 but cannot access external resouces on outside interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my config&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hostname SFN-ASA1&lt;/P&gt;&lt;P&gt;domain-name ia-global.com&lt;/P&gt;&lt;P&gt;enable password xxxxxxxxx&amp;nbsp; encrypted&lt;/P&gt;&lt;P&gt;passwd xxxxxxxxxxxx encrypted&lt;/P&gt;&lt;P&gt;names&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/0&lt;/P&gt;&lt;P&gt;nameif outside&lt;/P&gt;&lt;P&gt;security-level 0&lt;/P&gt;&lt;P&gt;ip address x.x.x.34 255.255.255.224&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/1&lt;/P&gt;&lt;P&gt;nameif Inside&lt;/P&gt;&lt;P&gt;security-level 100&lt;/P&gt;&lt;P&gt;ip address 10.2.0.3 255.255.255.248&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/2&lt;/P&gt;&lt;P&gt;nameif dmz&lt;/P&gt;&lt;P&gt;security-level 50&lt;/P&gt;&lt;P&gt;ip address 172.16.29.1 255.255.255.0&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/3&lt;/P&gt;&lt;P&gt;shutdown&lt;/P&gt;&lt;P&gt;no nameif&lt;/P&gt;&lt;P&gt;no security-level&lt;/P&gt;&lt;P&gt;no ip address&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/4&lt;/P&gt;&lt;P&gt;shutdown&lt;/P&gt;&lt;P&gt;no nameif&lt;/P&gt;&lt;P&gt;no security-level&lt;/P&gt;&lt;P&gt;no ip address&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/5&lt;/P&gt;&lt;P&gt;shutdown&lt;/P&gt;&lt;P&gt;no nameif&lt;/P&gt;&lt;P&gt;no security-level&lt;/P&gt;&lt;P&gt;no ip address&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/6&lt;/P&gt;&lt;P&gt;shutdown&lt;/P&gt;&lt;P&gt;no nameif&lt;/P&gt;&lt;P&gt;no security-level&lt;/P&gt;&lt;P&gt;no ip address&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/7&lt;/P&gt;&lt;P&gt;shutdown&lt;/P&gt;&lt;P&gt;no nameif&lt;/P&gt;&lt;P&gt;no security-level&lt;/P&gt;&lt;P&gt;no ip address&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Management0/0&lt;/P&gt;&lt;P&gt;shutdown&lt;/P&gt;&lt;P&gt;nameif management&lt;/P&gt;&lt;P&gt;security-level 100&lt;/P&gt;&lt;P&gt;ip address 10.2.3.20 255.255.255.0&lt;/P&gt;&lt;P&gt;management-only&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;ftp mode passive&lt;/P&gt;&lt;P&gt;clock timezone PST -8&lt;/P&gt;&lt;P&gt;clock summer-time PDT recurring&lt;/P&gt;&lt;P&gt;dns domain-lookup Inside&lt;/P&gt;&lt;P&gt;dns server-group DefaultDNS&lt;/P&gt;&lt;P&gt;name-server 10.2.3.21&lt;/P&gt;&lt;P&gt;name-server 10.2.3.22&lt;/P&gt;&lt;P&gt;domain-name ia-global.com&lt;/P&gt;&lt;P&gt;object network test_rdp&lt;/P&gt;&lt;P&gt;host 10.2.0.4&lt;/P&gt;&lt;P&gt;object network obj_dmz_network&lt;/P&gt;&lt;P&gt;subnet 172.16.29.0 255.255.255.0&lt;/P&gt;&lt;P&gt;object network obj_dmz_server&lt;/P&gt;&lt;P&gt;host 172.16.29.5&lt;/P&gt;&lt;P&gt;object network objN_default_network&lt;/P&gt;&lt;P&gt;subnet 0.0.0.0 0.0.0.0&lt;/P&gt;&lt;P&gt;object service objS_rdp&lt;/P&gt;&lt;P&gt;service tcp source eq 3389 destination eq 3389&lt;/P&gt;&lt;P&gt;object network objN_inside&lt;/P&gt;&lt;P&gt;subnet 10.0.0.0 255.0.0.0&lt;/P&gt;&lt;P&gt;object-group service objS_outbound_protocols&lt;/P&gt;&lt;P&gt;description This group is used for all outbound protocols&lt;/P&gt;&lt;P&gt;service-object tcp destination eq www&lt;/P&gt;&lt;P&gt;service-object tcp destination eq https&lt;/P&gt;&lt;P&gt;service-object tcp destination eq ftp&lt;/P&gt;&lt;P&gt;service-object tcp destination eq ssh&lt;/P&gt;&lt;P&gt;service-object tcp destination eq 3389&lt;/P&gt;&lt;P&gt;service-object udp destination eq ntp&lt;/P&gt;&lt;P&gt;service-object icmp&lt;/P&gt;&lt;P&gt;access-list dmz_access extended permit tcp any object test_rdp eq www&amp;nbsp; &lt;/P&gt;&lt;P&gt;access-list dmz_access extended permit tcp any object test_rdp eq 3389&lt;/P&gt;&lt;P&gt;access-list public_access extended permit tcp any object obj_dmz_server eq 3389&lt;/P&gt;&lt;P&gt;access-list public_access extended permit tcp any object test_rdp eq www&lt;/P&gt;&lt;P&gt;access-list public_access extended permit tcp any object obj_dmz_server eq www&lt;/P&gt;&lt;P&gt;pager lines 24&lt;/P&gt;&lt;P&gt;logging enable&lt;/P&gt;&lt;P&gt;logging asdm informational&lt;/P&gt;&lt;P&gt;mtu outside 1500&lt;/P&gt;&lt;P&gt;mtu Inside 1500&lt;/P&gt;&lt;P&gt;mtu management 1500&lt;/P&gt;&lt;P&gt;mtu dmz 1500&lt;/P&gt;&lt;P&gt;no failover&lt;/P&gt;&lt;P&gt;icmp unreachable rate-limit 1 burst-size 1&lt;/P&gt;&lt;P&gt;icmp permit any outside&lt;/P&gt;&lt;P&gt;icmp permit any Inside&lt;/P&gt;&lt;P&gt;icmp permit any dmz&lt;/P&gt;&lt;P&gt;no asdm history enable&lt;/P&gt;&lt;P&gt;arp timeout 14400&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object network test_rdp&lt;/P&gt;&lt;P&gt;nat (Inside,outside) static 64.47.176.56&lt;/P&gt;&lt;P&gt;object network obj_dmz_network&lt;/P&gt;&lt;P&gt;nat (Inside,dmz) static obj_dmz_network&lt;/P&gt;&lt;P&gt;object network obj_dmz_server&lt;/P&gt;&lt;P&gt;nat (dmz,outside) static 64.47.176.58&lt;/P&gt;&lt;P&gt;object network objN_inside&lt;/P&gt;&lt;P&gt;nat (Inside,outside) dynamic interface&lt;/P&gt;&lt;P&gt;access-group public_access in interface outside&lt;/P&gt;&lt;P&gt;access-group dmz_access in interface dmz&lt;/P&gt;&lt;P&gt;route outside 0.0.0.0 0.0.0.0 x.x.x.33 1&lt;/P&gt;&lt;P&gt;route Inside 10.0.0.0 255.0.0.0 10.2.0.1 1&lt;/P&gt;&lt;P&gt;route Inside 192.168.0.0 255.255.0.0 10.2.0.1 1&lt;/P&gt;&lt;P&gt;timeout xlate 3:00:00&lt;/P&gt;&lt;P&gt;timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02&lt;/P&gt;&lt;P&gt;timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00&lt;/P&gt;&lt;P&gt;timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00&lt;/P&gt;&lt;P&gt;timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute&lt;/P&gt;&lt;P&gt;timeout tcp-proxy-reassembly 0:01:00&lt;/P&gt;&lt;P&gt;timeout floating-conn 0:00:00&lt;/P&gt;&lt;P&gt;dynamic-access-policy-record DfltAccessPolicy&lt;/P&gt;&lt;P&gt;user-identity default-domain LOCAL&lt;/P&gt;&lt;P&gt;aaa authentication ssh console LOCAL&lt;/P&gt;&lt;P&gt;http server enable&lt;/P&gt;&lt;P&gt;http 10.0.0.0 255.0.0.0 Inside&lt;/P&gt;&lt;P&gt;http 192.168.0.0 255.255.0.0 Inside&lt;/P&gt;&lt;P&gt;http 192.168.0.0 255.255.0.0 management&lt;/P&gt;&lt;P&gt;http 10.2.3.0 255.255.255.0 Inside&lt;/P&gt;&lt;P&gt;http 10.2.3.0 255.255.255.0 management&lt;/P&gt;&lt;P&gt;no snmp-server location&lt;/P&gt;&lt;P&gt;no snmp-server contact&lt;/P&gt;&lt;P&gt;snmp-server enable traps snmp authentication linkup linkdown coldstart warmstart&lt;/P&gt;&lt;P&gt;telnet 10.0.0.0 255.0.0.0 Inside&lt;/P&gt;&lt;P&gt;telnet timeout 30&lt;/P&gt;&lt;P&gt;ssh 10.0.0.0 255.0.0.0 Inside&lt;/P&gt;&lt;P&gt;ssh timeout 30&lt;/P&gt;&lt;P&gt;console timeout 0&lt;/P&gt;&lt;P&gt;management-access Inside&lt;/P&gt;&lt;P&gt;threat-detection basic-threat&lt;/P&gt;&lt;P&gt;threat-detection statistics access-list&lt;/P&gt;&lt;P&gt;no threat-detection statistics tcp-intercept&lt;/P&gt;&lt;P&gt;ntp server 10.2.3.21&lt;/P&gt;&lt;P&gt;webvpn&lt;/P&gt;&lt;P&gt;username xxxxxx password xxxxxxxxxxx encrypted privilege 15&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;class-map inspection_default&lt;/P&gt;&lt;P&gt;match default-inspection-traffic&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;policy-map type inspect dns preset_dns_map&lt;/P&gt;&lt;P&gt;parameters&lt;/P&gt;&lt;P&gt;&amp;nbsp; message-length maximum client auto&lt;/P&gt;&lt;P&gt;&amp;nbsp; message-length maximum 512&lt;/P&gt;&lt;P&gt;policy-map global_policy&lt;/P&gt;&lt;P&gt;class inspection_default&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect dns preset_dns_map&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect ftp&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect h323 h225&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect h323 ras&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect rsh&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect rtsp&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect esmtp&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect sqlnet&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect skinny&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect sunrpc&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect xdmcp&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect sip&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect netbios&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect tftp&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect ip-options&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect icmp&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;service-policy global_policy global&lt;/P&gt;&lt;P&gt;prompt hostname context&lt;/P&gt;&lt;P&gt;no call-home reporting anonymous&lt;/P&gt;&lt;P&gt;Cryptochecksum:b115172d02c6c1286138d410287aaf87&lt;/P&gt;&lt;P&gt;: end&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 00:53:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-help-with-dmz-access-lists/m-p/2092272#M392080</guid>
      <dc:creator>Jason Flory</dc:creator>
      <dc:date>2019-03-12T00:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DMZ access lists</title>
      <link>https://community.cisco.com/t5/network-security/need-help-with-dmz-access-lists/m-p/2092273#M392081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following NAT is incorrect:&lt;/P&gt;&lt;P&gt;object network obj_dmz_network&lt;/P&gt;&lt;P&gt;nat (Inside,dmz) static obj_dmz_network&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should have been:&lt;/P&gt;&lt;P&gt;object network obj_10.0.0.0&lt;/P&gt;&lt;P&gt;&amp;nbsp; subnet 10.0.0.0 255.0.0.0&lt;/P&gt;&lt;P&gt;&amp;nbsp; nat (Inside,dmz) static obj_10.0.0.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then to provide granular access to the inside, you would need to place all the specific lines at the top of the ACL, then deny to 10.0.0.0, and finally permit any as follows:&lt;/P&gt;&lt;P&gt;access-list dmz_access permit tcp 172.16.29.0 255.255.255.0 10.0.0.0 255.0.0.0 eq 80&lt;/P&gt;&lt;P&gt;access-list dmz_access permit tcp 172.16.29.0 255.255.255.0 10.0.0.0 255.0.0.0 eq 443&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;access-list dmz_access deny ip 172.16.29.0 255.255.255.0 10.0.0.0 255.0.0.0&lt;/P&gt;&lt;P&gt;access-list dmz_access permit tcp 172.16.29.0 255.255.255.0 any eq 80&lt;/P&gt;&lt;P&gt;access-list dmz_access permit tcp 172.16.29.0 255.255.255.0 any eq 443&lt;/P&gt;&lt;P&gt;access-list dmz_access permit udp 172.16.29.0 255.255.255.0 any eq 53&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>Tue, 29 Jan 2013 01:28:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/need-help-with-dmz-access-lists/m-p/2092273#M392081</guid>
      <dc:creator>Jennifer Halim</dc:creator>
      <dc:date>2013-01-29T01:28:14Z</dc:date>
    </item>
  </channel>
</rss>

