<?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: Basic Firewall Configuration With DMZ, help! in Routing and SD-WAN</title>
    <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695297#M165337</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes but as you are using a public IP given with DHCP from ISP, you'll have to permit for any ip address.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Apr 2011 11:46:53 GMT</pubDate>
    <dc:creator>cadet alain</dc:creator>
    <dc:date>2011-04-21T11:46:53Z</dc:date>
    <item>
      <title>Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695283#M165323</link>
      <description>&lt;P&gt;Hello &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to set up my Cisco 520 router with a firewall that will:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DMZ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- Allow port 80 traffic to the vlan 20&lt;/P&gt;&lt;P&gt;- Block all other incomming ports to vlan 20 (unless initalised from inside)&lt;/P&gt;&lt;P&gt;- Allow all outgoing ports on vlan 20&lt;/P&gt;&lt;P&gt;- Block all access from vlan 20 to vlan 10 (unless initalised from vlan 10)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;General Network&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- Block all incomming ports to vlan 10 (unless initalised from inside)&lt;/P&gt;&lt;P&gt;- Allow all outgoing ports on vlan 10&lt;/P&gt;&lt;P&gt;- Allow all access from vlan 10 to vlan 20 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have read some articles on this, and i need a bit of help understanding some things.&lt;/P&gt;&lt;P&gt;Ill post my understanding so far with some questions.&lt;/P&gt;&lt;P&gt;Any help and or corrections would be greatly appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;First, configure basic firewall with no port 80 access&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Router(config)# access-list 103 deny ip any any&lt;/P&gt;&lt;P&gt;Router(config)# access-list 103 permit host 200.1.1.1 eq isakmp any &lt;STRONG&gt;&lt;EM&gt;(1. Why 200.1.1.1? what does this command do?)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inspect Rules &lt;STRONG&gt;&lt;EM&gt;(2. Are all these necessary? are there more than this?)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Router(config)# ip inspect name firewall tcp&lt;/P&gt;&lt;P&gt;Router(config)# ip inspect name firewall rtsp&lt;/P&gt;&lt;P&gt;Router(config)# ip inspect name firewall h323&lt;/P&gt;&lt;P&gt;Router(config)# ip inspect name firewall netshow&lt;/P&gt;&lt;P&gt;Router(config)# ip inspect name firewall ftp&lt;/P&gt;&lt;P&gt;Router(config)# ip inspect name firewall sqlnet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apply Access List to Interface&lt;/P&gt;&lt;P&gt;Router(config)# interface vlan 10&lt;/P&gt;&lt;P&gt;Router(config-if)# ip inspect firewall in&lt;/P&gt;&lt;P&gt;Router(config-if)# exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Router(config)# interface vlan 20&lt;/P&gt;&lt;P&gt;Router(config-if)# ip inspect firewall in&lt;/P&gt;&lt;P&gt;Router(config-if)# exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Router(config)# interface &lt;STRONG&gt;&lt;EM&gt;(3.&lt;/EM&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;ATM? ATM.0? Dialer0?) - Note I am using ADSL over PPPoA with ATM ATM.0 and Dialer0 interfaces&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Router(config-if)# ip access-group 103 in&lt;/P&gt;&lt;P&gt;Router(config-if)# exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Configure VLAN10 to VLAN20 rules&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;int vlan 10&lt;/P&gt;&lt;P&gt;desc General Network&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ip access-group 100 in&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ip nat inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int vlan 20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;desc DMZ&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ip access-group 101 in&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ip nat inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ip nat inside source list 1 interface Dialer0 overload&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV class="line number22 index21 alt1"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 1 remark Permited Subnets to go out to the Internet&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number23 index22 alt2"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 1 permit 192.168.10.0 0.0.0.255&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number23 index22 alt2"&gt;access-list 1 permit 192.168.10.0 0.0.0.255&lt;/DIV&gt;&lt;DIV class="line number23 index22 alt2"&gt; &lt;/DIV&gt;&lt;DIV class="line number24 index23 alt1"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 100 remark Restricted Inside network Access&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number25 index24 alt2"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 100 permit tcp 192.168.10.0 0.0.0.255 192.168.20.0 0.0.0.255&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number26 index25 alt1"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 100 permit udp 192.168.10.0 0.0.0.255 192.168.20.0 0.0.0.255 eq 53&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number27 index26 alt2"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 100 deny ip 192.168.10.0 0.0.0.255 192.168.20.0 0.0.0.255&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number28 index27 alt1"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 100 permit ip 192.168.10.0 0.0.0.255 any&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number28 index27 alt1"&gt; &lt;/DIV&gt;&lt;DIV class="line number29 index28 alt2"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 101 remark Restricted DMZ network Access&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number30 index29 alt1"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 101 permit tcp 192.168.20.0 0.0.0.255 192.168.10.0 0.0.0.255 established&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number31 index30 alt2"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 101 permit udp 192.168.20.0 0.0.0.255 eq 53 192.168.10.0 0.0.0.255&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number32 index31 alt1"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 101 deny ip 192.168.20.0 0.0.0.255 192.168.10.0 0.0.0.255&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number33 index32 alt2"&gt;&lt;CODE class="text plain"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;access-list 101 permit ip 192.168.20.0 0.0.0.255 any&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;&lt;DIV class="line number33 index32 alt2"&gt; &lt;/DIV&gt;&lt;DIV class="line number33 index32 alt2"&gt;&lt;STRONG&gt;&lt;EM&gt;(4. Do the above VLAN10 and VLAN20 rules seem correct?)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="line number33 index32 alt2"&gt;&lt;STRONG&gt;&lt;EM&gt;(5. How do i now forward incomming HTTP port 80 traffic to 192.168.20.0?)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="line number33 index32 alt2"&gt;&lt;STRONG&gt;&lt;EM&gt;(6. Even better, can i forward the HTTP traffic from a different mapped port other than 80? And can this be forwarded to a specific IP address eg. 192.168.20.254?)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="line number33 index32 alt2"&gt; &lt;/DIV&gt;&lt;DIV class="line number33 index32 alt2"&gt;Thanks in advance for any help &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="line number33 index32 alt2"&gt; &lt;/DIV&gt;&lt;DIV class="line number33 index32 alt2"&gt;Regards&lt;/DIV&gt;&lt;DIV class="line number33 index32 alt2"&gt;Richard&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 20:08:39 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695283#M165323</guid>
      <dc:creator>richarddowna</dc:creator>
      <dc:date>2019-03-04T20:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695284#M165324</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;&lt;EM&gt;&lt;STRONG&gt;First, configure basic firewall with no port 80 access&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 103 deny ip any any&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 103 permit host 200.1.1.1 eq isakmp any &lt;STRONG&gt;&lt;EM&gt;(1. Why 200.1.1.1? what does this command do?)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your second line will never get hit as you are denying everything in your first line so you should get rid of this line 1 and leave the implicit deny all&lt;/P&gt;&lt;P&gt;There is also an error in line 2: it should say access-list 103 permit udp host 200.1.1.1 eq isakmp any&lt;/P&gt;&lt;P&gt;It will permit initiation of phase 1 from the other end&amp;nbsp; router in IPSec VPN creation, that's why you have a public ip address which should be the WAN ip address of the other router.&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;&lt;/P&gt;Inspect Rules &lt;STRONG&gt;&lt;EM&gt;(2. Are all these necessary? are there more than this?)&lt;/EM&gt;&lt;/STRONG&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;Yes ther are a lot more but I would inspect udp also&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;Router(config)# interface &lt;STRONG&gt;&lt;EM&gt;(3.&lt;/EM&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;ATM? ATM.0? Dialer0?) &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;I would apply on Dialer0 but I'm not 100% sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;(4. Do the above VLAN10 and VLAN20 rules seem correct?)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;as you're using CBAC there is no need for the established keyword anymore&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 1 permit 192.168.10.0 0.0.0.255 shouldn't it be 192.168.20.0 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;(5. How do i now forward incomming HTTP port 80 traffic to 192.168.20.0?)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;you must use static pat: ip nat inside source static tcp 192.168.20.254 80 interface Dialer0 80&lt;/P&gt;&lt;P&gt;This is only a 1-1 relationship.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;6. Even better, can i forward the HTTP traffic from a 
different mapped port other than 80? And can this be forwarded to a 
specific IP address eg. 192.168.20.254?)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;Yes of course: ip nat inside source static tcp 192.168.20.254 80 interface Dialer0 8080 or ip nat inside source static tcp 192.168.20.254 8080 interface Dialer0 80&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 07:54:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695284#M165324</guid>
      <dc:creator>cadet alain</dc:creator>
      <dc:date>2011-04-21T07:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695285#M165325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thankyou Alain,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here a the revised commands,&lt;/P&gt;&lt;P&gt;Please let me know if ive made any errors, cheers!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 103 deny ip any any&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# ip inspect name firewall tcp&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# ip inspect name firewall udp&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# ip inspect name firewall rtsp&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# ip inspect name firewall h323&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# ip inspect name firewall netshow&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# ip inspect name firewall ftp&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# ip inspect name firewall sqlnet&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# interface vlan 10&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config-if)# description General Network&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config-if)# ip access-group 100 in&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config-if)# ip inspect firewall in&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config-if)# ip nat inside&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# interface vlan 20&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config-if)# description DMZ&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config-if)# ip access-group 101 in&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config-if)# ip inspect firewall in&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config-if)# ip nat inside&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# interface Dialer 0&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config-if)# ip access-group 103 in&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# ip nat inside source list 1 interface Dialer0 overload&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 1 remark Permited Subnets to go out to the Internet&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 1 permit 192.168.10.0 0.0.0.255&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 1 permit 192.168.20.0 0.0.0.255&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 100 remark Restricted Inside network Access&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 100 permit tcp 192.168.10.0 0.0.0.255 192.168.20.0 0.0.0.255&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 100 permit udp 192.168.10.0 0.0.0.255 192.168.20.0 0.0.0.255 eq 53&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 100 deny ip 192.168.10.0 0.0.0.255 192.168.20.0 0.0.0.255&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 100 permit ip 192.168.10.0 0.0.0.255 any&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 101 remark Restricted DMZ network Access&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 101 permit tcp 192.168.20.0 0.0.0.255 192.168.10.0 0.0.0.255 established&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 101 permit udp 192.168.20.0 0.0.0.255 eq 53 192.168.10.0 0.0.0.255&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 101 deny ip 192.168.20.0 0.0.0.255 192.168.10.0 0.0.0.255&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 101 permit ip 192.168.20.0 0.0.0.255 any&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# ip nat inside source static tcp 192.168.20.254 80 interface Dialer0 8080&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 08:28:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695285#M165325</guid>
      <dc:creator>richarddowna</dc:creator>
      <dc:date>2011-04-21T08:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695286#M165326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what I done my 806 router as Basic Firewall with DMZ and hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DMZ interface&lt;BR /&gt;interface Ethernet0&lt;BR /&gt; ip address 10.10.10.1 255.255.255.0&lt;BR /&gt; ip nat inside&lt;BR /&gt;!&lt;BR /&gt;ISP interface&lt;BR /&gt;interface Ethernet1&lt;BR /&gt; ip address 216.93.82.8 255.255.255.240&lt;BR /&gt; ip nat outside&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;Default route to ISP's gateway&lt;BR /&gt;ip route 0.0.0.0 0.0.0.0 216.93.82.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Static route to inside filter router (internal LAN traffic)&lt;BR /&gt;ip route 172.17.0.0 255.255.0.0 10.10.10.2&lt;BR /&gt;!&lt;/P&gt;&lt;P&gt;Allow traffic from internal LAN out&lt;BR /&gt;access-list 1 permit 172.17.0.0 0.0.255.255&lt;BR /&gt;!&lt;BR /&gt;ip nat inside source list 1 interface Ethernet1 overload&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Send incoming SMTP mail traffic Solaris box&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp 10.10.10.5 21 216.93.82.8 25 extendable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Send incoming Web traffic to Debian box&lt;BR /&gt;ip nat inside source static tcp 10.10.10.3 80 216.93.82.8 80 extendable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please rate the all helpfull posts. &lt;BR /&gt;Regards,&lt;BR /&gt;Naidu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 09:02:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695286#M165326</guid>
      <dc:creator>Latchum Naidu</dc:creator>
      <dc:date>2011-04-21T09:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695287#M165327</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 permit DHCP traffic in ACL 103: permit udpany any eq bootpc otherwise you'll have no ip address from your ISP unless you have a static IP.&lt;/P&gt;&lt;P&gt;I would add ip inspect log drop-pkt in global config and ip inspect firewall icmp&lt;/P&gt;&lt;P&gt;You can get rid of established&amp;nbsp; keyword in ACL 101&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I would do&amp;nbsp; testing of communication between vlans and then with internet( with pings)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 09:20:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695287#M165327</guid>
      <dc:creator>cadet alain</dc:creator>
      <dc:date>2011-04-21T09:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695288#M165328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello thanks for that,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried the configuration i posted above and well. Its not working how i intended. And im really struggling to see why &lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/sad.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need these rules:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DMZ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- Allow port 80 traffic to the vlan 20&lt;/P&gt;&lt;P&gt;- Block all other incomming ports to vlan 20 (unless initalised from inside)&lt;/P&gt;&lt;P&gt;- Allow all outgoing ports on vlan 20&lt;/P&gt;&lt;P&gt;- Block all access from vlan 20 to vlan 10 (unless initalised from vlan 10)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;General Network&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- Block all incomming ports to vlan 10 (unless initalised from inside)&lt;/P&gt;&lt;P&gt;- Allow all outgoing ports on vlan 10&lt;/P&gt;&lt;P&gt;- Allow all access from vlan 10 to vlan 20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But with the commands i posted two posts above, &lt;/P&gt;&lt;P&gt;vlan 10 cannot ping vlan 20 &lt;/P&gt;&lt;P&gt;vlan 20 cannot ping vlan 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 09:37:31 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695288#M165328</guid>
      <dc:creator>richarddowna</dc:creator>
      <dc:date>2011-04-21T09:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695289#M165329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK, I am assuming Vlan 10 Ip range is 192.168.10.0 and Vlan 20 range is 192.168.20.0&lt;/P&gt;&lt;P&gt;And follow the below config may help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Router(config)# access-list 101 deny tcp any 192.168.20.0 0.0.0.255&lt;BR /&gt;Router(config)# access-list 101 deny udp any 192.168.20.0 0.0.0.255&lt;BR /&gt;Router(config)# access-list 101 deny ip 192.168.20.0 0.0.0.255 192.168.10.0 0.0.0.255&lt;BR /&gt;Router(config)# access-list 101 permit ip any any eq 80&lt;BR /&gt;Router(config)# access-list 101 permit tcp 192.168.20.0 0.0.0.255 any&lt;BR /&gt;Router(config)# access-list 101 permit udp 192.168.20.0 0.0.0.255 any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Router(config)# access-list 100 deny tcp any 192.168.20.0 0.0.0.255&lt;BR /&gt;Router(config)# access-list 100 deny udp any 192.168.20.0 0.0.0.255&lt;BR /&gt;Router(config)# access-list 100 permit ip any 192.168.20.0 0.0.0.255&lt;BR /&gt;Router(config)# access-list 100 permit tcp 192.168.10.0 0.0.0.255 any&lt;BR /&gt;Router(config)# access-list 100 permit udp 192.168.10.0 0.0.0.255 any&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Hope the above will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please rate the all helpfull posts. &lt;BR /&gt;Regards,&lt;BR /&gt;Naidu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 10:20:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695289#M165329</guid>
      <dc:creator>Latchum Naidu</dc:creator>
      <dc:date>2011-04-21T10:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695290#M165330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Naidu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im a bit confused, wont this line deny access from 192.168.10.0 to 192.168.20.0?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 100 deny tcp any 192.168.20.0 0.0.0.255&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 100 deny udp any 192.168.20.0 0.0.0.255&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to allow all trafic initiated by 192.168.10.0 towards 192.168.20.0&lt;/P&gt;&lt;P&gt;and deny all traffic initiated by 192.168.20.0 towards 192.168.10.0 &lt;/P&gt;&lt;P&gt;Since vlan 20 is my DMZ, i do not want it to be able to access vlan 10, but i do want vlan 10 to be able to access vlan 20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or is this command working how it should?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 10:35:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695290#M165330</guid>
      <dc:creator>richarddowna</dc:creator>
      <dc:date>2011-04-21T10:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695291#M165331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Im a bit confused, wont this line deny access from 192.168.10.0 to 192.168.20.0?&lt;BR /&gt;&lt;/SPAN&gt;Router(config)# access-list 100 deny tcp any 192.168.20.0 0.0.0.255&lt;BR /&gt;Router(config)# access-list 100 deny udp any 192.168.20.0 0.0.0.255&lt;/P&gt;&lt;P&gt;I just denied tcp &amp;amp; udp as you want block all outgoing ports on vlan 20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Since vlan 20 is my DMZ, i do not want it to be able to access vlan 10, but i do want vlan 10 to be able to access vlan 20.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The following rule will do the needy...Router(config)# access-list 100 permit ip any 192.168.20.0 0.0.0.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the above will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please rate the all helpfull posts. &lt;BR /&gt;Regards,&lt;BR /&gt;Naidu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 10:48:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695291#M165331</guid>
      <dc:creator>Latchum Naidu</dc:creator>
      <dc:date>2011-04-21T10:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695292#M165332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thankyou &lt;SPAN&gt;Naidu,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will give those commands a try,&lt;/P&gt;&lt;P&gt;Before I do, I want to make sure ive got the commands correct to open two ports on the router and forward them to 192.168.20.254&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want port 22 open translated to port 54321 (external port) and pointing to 192.168.20.254&lt;/P&gt;&lt;P&gt;I want port 80 open and pointing to 192.168.20.254&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what I have, I tried these previously and ran an external port scan, unfortunatly it showed these ports still blocked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 103 permit tcp any host 192.168.20.254 eq 80&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 103 permit tcp any host 192.168.20.254 eq 54321&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# ip nat inside source static tcp 192.168.20.254 22 interface Dialer0 54321&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# ip nat inside source static tcp 192.168.20.254 80 interface Dialer0 80&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thankyou for the all the help. Much appreciated &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 11:02:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695292#M165332</guid>
      <dc:creator>richarddowna</dc:creator>
      <dc:date>2011-04-21T11:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695293#M165333</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;&lt;EM&gt;Router(config)# access-list 103 permit tcp any host 192.168.20.254 eq 80&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router(config)# access-list 103 permit tcp any host 192.168.20.254 eq 54321&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It can't&amp;nbsp; work you must use the Public IP not the private one.&lt;/P&gt;&lt;P&gt;To prove it, just do a show access-list and you won't see hits for these 2 lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 11:09:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695293#M165333</guid>
      <dc:creator>cadet alain</dc:creator>
      <dc:date>2011-04-21T11:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695294#M165334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Router#sh access-lists&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Extended IP access list 103&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10 permit tcp any host 192.168.20.254 eq www&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is showing up!&lt;/P&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 11:13:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695294#M165334</guid>
      <dc:creator>richarddowna</dc:creator>
      <dc:date>2011-04-21T11:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695295#M165335</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 didn't say it wouldn't be showing up, I said you would have no matches for these lines but only matches for the implicit deny. look at the right of the ACL line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 11:21:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695295#M165335</guid>
      <dc:creator>cadet alain</dc:creator>
      <dc:date>2011-04-21T11:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695296#M165336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So should i open the port on the Dialer0 interface (my external IP) &lt;/P&gt;&lt;P&gt;Then use nat to forward the port to the server 192.168.20.254?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, how would i do this? Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 11:29:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695296#M165336</guid>
      <dc:creator>richarddowna</dc:creator>
      <dc:date>2011-04-21T11:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695297#M165337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes but as you are using a public IP given with DHCP from ISP, you'll have to permit for any ip address.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 11:46:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695297#M165337</guid>
      <dc:creator>cadet alain</dc:creator>
      <dc:date>2011-04-21T11:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695298#M165338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent! That worked!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you Alain for your help&lt;/P&gt;&lt;P&gt;and Thank you &lt;SPAN&gt;Naidu for your access lists, these worked perfectly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just have one last access list tweak!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need 192.168.10.0 to be able to ssh via port 22 into 192.168.20.254&lt;/P&gt;&lt;P&gt;currently it says:&lt;/P&gt;&lt;P&gt;Connection refused.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 12:18:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695298#M165338</guid>
      <dc:creator>richarddowna</dc:creator>
      <dc:date>2011-04-21T12:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695299#M165339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with the below one should do that...&lt;BR /&gt;Router(config)# access-list 100 permit ip 192.168.10.0 0.0.0.255 192.168.20.254 0.0.0.255 eq 22&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Please rate the all helpfull posts. &lt;BR /&gt;Regards,&lt;BR /&gt;Naidu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 12:29:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695299#M165339</guid>
      <dc:creator>Latchum Naidu</dc:creator>
      <dc:date>2011-04-21T12:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695300#M165340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am getting this error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Router(config)# access-list 100 permit ip 192.168.10.0 0.0.0.255 192.168.20.254 0.0.0.255 eq 22&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;/P&gt;&lt;P&gt;% Invalid input detected at '^' marker.&lt;/P&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;at 'eq'&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;thanks&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 12:39:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695300#M165340</guid>
      <dc:creator>richarddowna</dc:creator>
      <dc:date>2011-04-21T12:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695301#M165341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;&lt;SPAN&gt;access-list 100 permit ip 192.168.10.0 0.0.0.255 192.168.20.254 0.0.0.255 eq 22&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;replace ip by tcp like this:&amp;nbsp; &lt;SPAN&gt;access-list 100 permit tcp 192.168.10.0 0.0.0.255 192.168.20.254 0.0.0.255 eq 22&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 13:09:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695301#M165341</guid>
      <dc:creator>cadet alain</dc:creator>
      <dc:date>2011-04-21T13:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Firewall Configuration With DMZ, help!</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695302#M165342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Router(config)# access-list 100 permit tcp 192.168.10.0 0.0.0.255 eq 22 host host 192.168.20.254 eq 22&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Please rate the all helpfull posts. &lt;BR /&gt;Regards,&lt;BR /&gt;Naidu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 13:13:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/basic-firewall-configuration-with-dmz-help/m-p/1695302#M165342</guid>
      <dc:creator>Latchum Naidu</dc:creator>
      <dc:date>2011-04-21T13:13:02Z</dc:date>
    </item>
  </channel>
</rss>

