<?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 Seb, in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/asa-port-question/m-p/2818027#M174588</link>
    <description>&lt;P&gt;Seb,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I sent an e-mail back with a problem that I ran into.&lt;/P&gt;
&lt;P&gt;-Jon&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Nov 2015 20:22:29 GMT</pubDate>
    <dc:creator>JonRM1970</dc:creator>
    <dc:date>2015-11-30T20:22:29Z</dc:date>
    <item>
      <title>ASA port question</title>
      <link>https://community.cisco.com/t5/network-security/asa-port-question/m-p/2818024#M174584</link>
      <description>&lt;P&gt;I have an ASA 5510 running 9.1(2). &lt;/P&gt;
&lt;P&gt;I am not entirely familiar with the ASA firewall, but know enough to be dangerous with it.&lt;/P&gt;
&lt;P&gt;What I am looking for is some help on the syntax and proceedure to get a second subnet added into the device and working.&lt;/P&gt;
&lt;P&gt;What I have:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ASA 5510 running two ports (Inside (ethe 0/1: local office 10.10.10.x sunbet, and Outside ethe 0/0:&amp;nbsp;ISP to cloud, and&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; 2 VPN tunnels 1. to PIX 501, and 2. to Data Center off-site)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;PIX 501 (running to ISP on ethe0/0&amp;nbsp;and Development subnet ethe0/1 on&amp;nbsp;10.10.20.x, with one&amp;nbsp;VPN to ASA 5510)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;The PIX has a VPN tunnel to the ASA, which allows it to go to the data center&amp;nbsp;and remain seperate fromt he office subnet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I would like to&amp;nbsp;take the PIX off line and add its subnet traffic&amp;nbsp;to the ASA on one of the free ports if possible. The requirements I need are:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10.10.20.x stay seperate but still be able to get to the datacenter via the VPN tunnel on asa 5510.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;10.10.10.x not change.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VPN to datacenter remain up and not changed.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I would like to add the PIX traffic to the ether 0/2 port. Any help and guidance would greatly be appreciated.&lt;/P&gt;
&lt;P&gt;I have attached a diagram showing as much detail as I can. If more is needed I an continue via e-mail if needed.&lt;/P&gt;
&lt;P&gt;-Jon&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 06:56:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-port-question/m-p/2818024#M174584</guid>
      <dc:creator>JonRM1970</dc:creator>
      <dc:date>2019-03-12T06:56:35Z</dc:date>
    </item>
    <item>
      <title>Hi Jon,</title>
      <link>https://community.cisco.com/t5/network-security/asa-port-question/m-p/2818025#M174585</link>
      <description>&lt;P&gt;Hi Jon,&lt;/P&gt;
&lt;P&gt;There is a lot of guess work in this config as we don't have you ASA config to go by...&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;PRE class="prettyprint"&gt;!&lt;BR /&gt;interface Eth0/2&lt;BR /&gt; switchport access vlan 20&lt;BR /&gt;!&lt;BR /&gt;interface Vlan20&lt;BR /&gt; nameif old_pix_lan&lt;BR /&gt; security-level 90&lt;BR /&gt; ip address 10.10.20.254 255.255.255.0&lt;BR /&gt;!&lt;/PRE&gt;
&lt;P&gt;...I've guessed that the PIX network was just a /24 so the gateway might be 10.10.20.254 ?&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;PRE class="prettyprint"&gt;!&lt;BR /&gt;object network old_pix_network&lt;BR /&gt; subnet 10.10.20.0 255.255.255.0&lt;BR /&gt; description old_pix_network&lt;BR /&gt;!&lt;BR /&gt;object network dc_network&lt;BR /&gt; subnet &amp;lt;dc_subnet_id&amp;gt; &amp;lt;dc_netmask&amp;gt;&lt;BR /&gt;!&lt;/PRE&gt;
&lt;P&gt;...you never said what the DC subnet was.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;PRE class="prettyprint"&gt;!&lt;BR /&gt;access-list acl_l2l_dc extended permit ip 10.10.20.0 255.255.255.0 &amp;lt;dc_subnet_id&amp;gt; &amp;lt;dc_netmask&amp;gt;&lt;BR /&gt;!&lt;BR /&gt;nat (old_pix_lan,outside) source static old_pix_network old_pix_network destination static dc_network dc_network&lt;BR /&gt;!&lt;/PRE&gt;
&lt;P&gt;...you will have an ACL confiured which is used by the crytpo map statement to connect to the DC. I've taken a wild guess and called it 'acl_l2l_dc'. This needs to be changed to match what is already configured!&lt;/P&gt;
&lt;P&gt;The second is a NAT exemption rule, so you don't NAT the old_pix_network as it leaves eth0/0 and therefore is correctly identified by the above ACL. Of course, if NAT is done on your ISP modem for your&lt;STRONG&gt; entire&lt;/STRONG&gt; network the&amp;nbsp; you can leave it out.&lt;/P&gt;
&lt;P&gt;Would be usefull to see your ASA config to fill in the blanks.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;cheers,&lt;/P&gt;
&lt;P&gt;Seb.&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;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2015 08:36:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-port-question/m-p/2818025#M174585</guid>
      <dc:creator>Seb Rupik</dc:creator>
      <dc:date>2015-11-25T08:36:28Z</dc:date>
    </item>
    <item>
      <title>Seb,</title>
      <link>https://community.cisco.com/t5/network-security/asa-port-question/m-p/2818026#M174586</link>
      <description>&lt;P&gt;Seb,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;if you have an e-mail you would be willing to give me, I can give you a sanitized copy of all three configs. Did not want to post them here due to community boards.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;-Jon&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2015 14:55:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-port-question/m-p/2818026#M174586</guid>
      <dc:creator>JonRM1970</dc:creator>
      <dc:date>2015-11-25T14:55:05Z</dc:date>
    </item>
    <item>
      <title>Seb,</title>
      <link>https://community.cisco.com/t5/network-security/asa-port-question/m-p/2818027#M174588</link>
      <description>&lt;P&gt;Seb,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I sent an e-mail back with a problem that I ran into.&lt;/P&gt;
&lt;P&gt;-Jon&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2015 20:22:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-port-question/m-p/2818027#M174588</guid>
      <dc:creator>JonRM1970</dc:creator>
      <dc:date>2015-11-30T20:22:29Z</dc:date>
    </item>
  </channel>
</rss>

