<?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 ASA redistribution using route-map in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/asa-redistribution-using-route-map/m-p/1204879#M875693</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to accomplish redistribution between two ospf processes using a route-map with an access-list on an ASA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can't seem to get it working. Does anyone know if this is possible or if i have something messed up? See below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;redistribute ospf 175 metric-type 1 subnets tag 10457 route-map OSPF175-OSPF100-RMAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;route-map OSPF175-OSPF100-RMAP permit 10&lt;/P&gt;&lt;P&gt; match ip address OSPF175-OSPF100-ACL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list OSPF175-OSPF100-ACL remark Used for redistribution&lt;/P&gt;&lt;P&gt;access-list OSPF175-OSPF100-ACL standard permit host x.y.z.0&lt;/P&gt;&lt;P&gt;access-list OSPF175-OSPF100-ACL standard permit host 0.0.0.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 14:57:47 GMT</pubDate>
    <dc:creator>tomek0001</dc:creator>
    <dc:date>2019-03-11T14:57:47Z</dc:date>
    <item>
      <title>ASA redistribution using route-map</title>
      <link>https://community.cisco.com/t5/network-security/asa-redistribution-using-route-map/m-p/1204879#M875693</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to accomplish redistribution between two ospf processes using a route-map with an access-list on an ASA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can't seem to get it working. Does anyone know if this is possible or if i have something messed up? See below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;redistribute ospf 175 metric-type 1 subnets tag 10457 route-map OSPF175-OSPF100-RMAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;route-map OSPF175-OSPF100-RMAP permit 10&lt;/P&gt;&lt;P&gt; match ip address OSPF175-OSPF100-ACL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list OSPF175-OSPF100-ACL remark Used for redistribution&lt;/P&gt;&lt;P&gt;access-list OSPF175-OSPF100-ACL standard permit host x.y.z.0&lt;/P&gt;&lt;P&gt;access-list OSPF175-OSPF100-ACL standard permit host 0.0.0.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 14:57:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-redistribution-using-route-map/m-p/1204879#M875693</guid>
      <dc:creator>tomek0001</dc:creator>
      <dc:date>2019-03-11T14:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: ASA redistribution using route-map</title>
      <link>https://community.cisco.com/t5/network-security/asa-redistribution-using-route-map/m-p/1204880#M875694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This worked for me, here is my setup&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FW0----&amp;gt;(OSPF process 1)FW1(OSPF process 2)----&amp;gt;FW2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FW0 is passing a /32 (192.168.10.1) via OSPF to FW1 process 1 who then redistributes into OSPF process 2 and passes the route onto FW2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FW1 Config&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;route-map eigrp_redis permit 10&lt;/P&gt;&lt;P&gt;match ip address eigrp_redist&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list eigrp_redist standard permit host 192.168.10.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;router ospf 1&lt;/P&gt;&lt;P&gt;network 192.168.1.0 255.255.255.252 area 0&lt;/P&gt;&lt;P&gt;log-adj-changes&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;router ospf 2&lt;/P&gt;&lt;P&gt;network 192.168.2.0 255.255.255.252 area 0&lt;/P&gt;&lt;P&gt;log-adj-changes&lt;/P&gt;&lt;P&gt;redistribute ospf 1 metric-type 1 subnets tag 10457 route-map eigrp_redis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Routing table for FW1&lt;/P&gt;&lt;P&gt;O E1 192.168.10.1 255.255.255.255 [110/11] via 192.168.1.1, 0:04:28, inside&lt;/P&gt;&lt;P&gt;C 192.168.1.0 255.255.255.252 is directly connected, inside&lt;/P&gt;&lt;P&gt;C 192.168.2.0 255.255.255.252 is directly connected, ouside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Routing table for FW2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;O E1 192.168.10.1 255.255.255.255 [110/21] via 192.168.2.2, 0:01:34, inside&lt;/P&gt;&lt;P&gt;C 192.168.2.0 255.255.255.252 is directly connected, inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am running code 7.2&lt;/P&gt;&lt;P&gt;FW1# sh ver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cisco PIX Security Appliance Software Version 7.2(2)19&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How are your /32 routes begin learned at the point of redistribution ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2009 22:35:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-redistribution-using-route-map/m-p/1204880#M875694</guid>
      <dc:creator>adamclarkuk_2</dc:creator>
      <dc:date>2009-02-26T22:35:36Z</dc:date>
    </item>
  </channel>
</rss>

