<?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: PIX VLAN Problem? in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/pix-vlan-problem/m-p/408584#M536212</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, better to configure pix for listening these two vlans. dont pass the traffic to the router.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you will have two interfaces, one for outside&lt;/P&gt;&lt;P&gt;one for inside (vlan1 +vlan2)&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>Mon, 27 Jun 2005 19:14:53 GMT</pubDate>
    <dc:creator>bparish</dc:creator>
    <dc:date>2005-06-27T19:14:53Z</dc:date>
    <item>
      <title>PIX VLAN Problem?</title>
      <link>https://community.cisco.com/t5/network-security/pix-vlan-problem/m-p/408583#M536211</link>
      <description>&lt;P&gt;I'm wondering if someone could clarify a possible vlan issue with a PIX515. I currently have a server/software firewall in place and am trying to replace it with a PIX515. My network has 2 user vlan's and a third for the router. My current firewall doesn't have any vlan configuration, it just passes all traffic to the router and then it sends it to the vlan. I can't seem to get the pix to pass traffic back inside. Must I configure vlan on the PIX? Thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 08:14:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-vlan-problem/m-p/408583#M536211</guid>
      <dc:creator>rryan</dc:creator>
      <dc:date>2020-02-21T08:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: PIX VLAN Problem?</title>
      <link>https://community.cisco.com/t5/network-security/pix-vlan-problem/m-p/408584#M536212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, better to configure pix for listening these two vlans. dont pass the traffic to the router.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you will have two interfaces, one for outside&lt;/P&gt;&lt;P&gt;one for inside (vlan1 +vlan2)&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>Mon, 27 Jun 2005 19:14:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-vlan-problem/m-p/408584#M536212</guid>
      <dc:creator>bparish</dc:creator>
      <dc:date>2005-06-27T19:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: PIX VLAN Problem?</title>
      <link>https://community.cisco.com/t5/network-security/pix-vlan-problem/m-p/408585#M536213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to keep everything the same as it is. Do I have to do anything special on the PIX to pass data to and from the router. My inside networks are vlan1 and vlan2 at the switch level and my router is on 1,2 and vlan3which is for outbound traffic. It's a router on a stick configuration.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 23:55:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-vlan-problem/m-p/408585#M536213</guid>
      <dc:creator>rryan</dc:creator>
      <dc:date>2005-06-27T23:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: PIX VLAN Problem?</title>
      <link>https://community.cisco.com/t5/network-security/pix-vlan-problem/m-p/408586#M536214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will have to configure an 802.1q trunk link on the switch port that connects to your PIX. (interface fa0/1, switchport trunk encap dot1q, swi mode trunk). Than do something like the below on your PIX (changing the VLAN numbers to correspond to your VLAN's that you created on your switch). The PIX will route between VLAN's so you will probably be changing your routers config around as well. Be sure your PIX is running a minimum of PIX code 6.3 to do VLAN's. If your running 7.0, let me know, the config has changed quite a bit. The below config will only create the VLAN interface and the PIX will treat it as a completely seperate physical interface so you will need to create your routes, NAT, statics, and rules to allow traffic to pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface ethernet0 auto shutdown&lt;/P&gt;&lt;P&gt;interface ethernet1 auto shutdown&lt;/P&gt;&lt;P&gt;interface ethernet1 vlan2 physical&lt;/P&gt;&lt;P&gt;interface ethernet1 vlan3 logical&lt;/P&gt;&lt;P&gt;nameif ethernet0 outside security0&lt;/P&gt;&lt;P&gt;nameif ethernet1 inside security100&lt;/P&gt;&lt;P&gt;nameif vlan3 SomeName security50&lt;/P&gt;&lt;P&gt;nat (inside) 0 0.0.0.0 0.0.0.0 0 0 &amp;lt;--- or whatever&lt;/P&gt;&lt;P&gt;nat (SomeName) 0 0.0.0.0 0.0.0.0 0 0 &amp;lt;--- or whatever&lt;/P&gt;&lt;P&gt;ip address outside X.X.X.X 255.255.255.0&lt;/P&gt;&lt;P&gt;ip address inside X.X.X.X 255.255.255.0&lt;/P&gt;&lt;P&gt;ip address SomeName X.X.X.X 255.255.255.0&lt;/P&gt;&lt;P&gt;(etc....)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jul 2005 02:43:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-vlan-problem/m-p/408586#M536214</guid>
      <dc:creator>baileja</dc:creator>
      <dc:date>2005-07-02T02:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: PIX VLAN Problem?</title>
      <link>https://community.cisco.com/t5/network-security/pix-vlan-problem/m-p/408587#M536215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi baileja ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can a failover pix be included in this senario? single L2 switch provide 2 trunks to two PIX?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to do that, pls advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Aug 2005 06:31:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-vlan-problem/m-p/408587#M536215</guid>
      <dc:creator>wanghmk1223</dc:creator>
      <dc:date>2005-08-05T06:31:05Z</dc:date>
    </item>
  </channel>
</rss>

