<?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: help with PIX-501 example in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/help-with-pix-501-example/m-p/1161243#M876003</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the 10.1.1.X is the internal range, then you got these wrong:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) 10.1.1.3 192.168.1.4 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;static (inside,outside) 10.1.1.4 192.168.1.15 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;static (inside,outside) 10.1.1.5 192.168.1.10 netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They should be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) 192.168.1.4 10.1.1.3 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;static (inside,outside) 192.168.1.15 10.1.1.4 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;static (inside,outside) 192.168.1.10 10.1.1.5 netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And your ACL statements are wrong too:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any host 192.168.1.4 eq www&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any host 192.168.1.15 eq smtp&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any host 192.168.1.10 eq ftp &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is how they should look.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Feb 2009 16:32:44 GMT</pubDate>
    <dc:creator>Ivan Martinon</dc:creator>
    <dc:date>2009-02-23T16:32:44Z</dc:date>
    <item>
      <title>help with PIX-501 example</title>
      <link>https://community.cisco.com/t5/network-security/help-with-pix-501-example/m-p/1161240#M875997</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm learning how to configure a PIX 501.  The boss said "you can do this right?",  "I guess", I said and he said "good, please make it work".  &lt;/P&gt;&lt;P&gt;Well I found an example:&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a0080094ea2.shtml" target="_blank"&gt;http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a0080094ea2.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;that has most of what I need but I can only get small things to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently I have two hosts on the inside network, a linux workstation at IP 1.220 and a linux web server @ 1.4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Windows PC which I can use to test the connections on the inside network or the outside.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the PC is on the inside at 1.66, I can get to the web server.  I see in the server logs the request from the PC and the responses from the server and I see the page on my browser.&lt;/P&gt;&lt;P&gt;When I move the PC to the outside network @ 10.2.1.201, I see the PIX NAT the destination address of the web server from 10.1.1.3 to 192.168.1.4 as expected but the web server never gets the request.&lt;/P&gt;&lt;P&gt;I can ping the router at 10.1.1.1 and the PIX at 10.1.1.2 from the outside but no farther inside.&lt;/P&gt;&lt;P&gt;The only change I have made to the example was to enable all the ICMP traffic and change the telnet host to 1.220:&lt;/P&gt;&lt;P&gt;pixfirewall(config)# sho icmp&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;pixfirewall(config)# sho telnet&lt;/P&gt;&lt;P&gt;192.168.1.254 255.255.255.255 inside&lt;/P&gt;&lt;P&gt;192.168.1.220 255.255.255.255 inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the PIX logs:&lt;/P&gt;&lt;P&gt;Feb 20 10:01:25 192.168.1.1 %PIX-6-302013: Built inbound TCP connection 11 for outside:10.2.1.201/3897 (10.2.1.201/3897) to inside:192.168.1.4/80 (10.1.1.3/80) &lt;/P&gt;&lt;P&gt;Feb 20 10:03:26 192.168.1.1 %PIX-6-302014: Teardown TCP connection 11 for outside:10.2.1.201/3897 to inside:192.168.1.4/80 duration 0:02:01 bytes 0 SYN Timeout &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I have three questions:&lt;/P&gt;&lt;P&gt;1.  Is anyone aware of a bug or typo in the example I used above?&lt;/P&gt;&lt;P&gt;2.  Can someone direct me to a manual on how to configure the logging to show what is happening to my packets? NATs, routes used etc.&lt;/P&gt;&lt;P&gt;3.  How can I turn my PIX into an expensive router, i.e. turn off all firewall stuff and let everything through from inside to outside and back?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for any help,&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 14:54:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/help-with-pix-501-example/m-p/1161240#M875997</guid>
      <dc:creator>bbensoncisco</dc:creator>
      <dc:date>2019-03-11T14:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: help with PIX-501 example</title>
      <link>https://community.cisco.com/t5/network-security/help-with-pix-501-example/m-p/1161241#M875999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So what you are trying to do is to have this webserver reached from the outside? If this is the case you need static translations and access-lists, can you post your pix configuration here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Feb 2009 02:07:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/help-with-pix-501-example/m-p/1161241#M875999</guid>
      <dc:creator>Ivan Martinon</dc:creator>
      <dc:date>2009-02-22T02:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: help with PIX-501 example</title>
      <link>https://community.cisco.com/t5/network-security/help-with-pix-501-example/m-p/1161242#M876000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 100 permit icmp any any echo-reply &lt;/P&gt;&lt;P&gt;access-list 100 permit icmp any any time-exceeded &lt;/P&gt;&lt;P&gt;access-list 100 permit icmp any any unreachable &lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any host 10.1.1.3 eq www &lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any host 10.1.1.4 eq smtp &lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any host 10.1.1.5 eq ftp &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;logging on&lt;/P&gt;&lt;P&gt;logging standby&lt;/P&gt;&lt;P&gt;logging monitor debugging&lt;/P&gt;&lt;P&gt;logging trap debugging&lt;/P&gt;&lt;P&gt;logging host inside 192.168.1.220&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;&lt;/P&gt;&lt;P&gt;ip address outside 10.1.1.2 255.0.0.0&lt;/P&gt;&lt;P&gt;ip address inside 192.168.1.1 255.255.255.0&lt;/P&gt;&lt;P&gt;ip audit info action alarm&lt;/P&gt;&lt;P&gt;ip audit attack action alarm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arp timeout 14400&lt;/P&gt;&lt;P&gt;global (outside) 1 10.1.1.254&lt;/P&gt;&lt;P&gt;nat (inside) 1 0.0.0.0 0.0.0.0 0 0&lt;/P&gt;&lt;P&gt;static (inside,outside) 10.1.1.3 192.168.1.4 netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;static (inside,outside) 10.1.1.4 192.168.1.15 netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;static (inside,outside) 10.1.1.5 192.168.1.10 netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;access-group 100 in interface outside&lt;/P&gt;&lt;P&gt;route outside 0.0.0.0 0.0.0.0 10.1.1.1 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Feb 2009 21:57:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/help-with-pix-501-example/m-p/1161242#M876000</guid>
      <dc:creator>bbensoncisco</dc:creator>
      <dc:date>2009-02-22T21:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: help with PIX-501 example</title>
      <link>https://community.cisco.com/t5/network-security/help-with-pix-501-example/m-p/1161243#M876003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the 10.1.1.X is the internal range, then you got these wrong:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) 10.1.1.3 192.168.1.4 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;static (inside,outside) 10.1.1.4 192.168.1.15 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;static (inside,outside) 10.1.1.5 192.168.1.10 netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They should be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) 192.168.1.4 10.1.1.3 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;static (inside,outside) 192.168.1.15 10.1.1.4 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;static (inside,outside) 192.168.1.10 10.1.1.5 netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And your ACL statements are wrong too:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any host 192.168.1.4 eq www&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any host 192.168.1.15 eq smtp&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any host 192.168.1.10 eq ftp &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is how they should look.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2009 16:32:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/help-with-pix-501-example/m-p/1161243#M876003</guid>
      <dc:creator>Ivan Martinon</dc:creator>
      <dc:date>2009-02-23T16:32:44Z</dc:date>
    </item>
  </channel>
</rss>

