<?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 interface route-map to change route metric in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014429#M1108885</link>
    <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can I use route map on interface to chane metric for some route? something like&lt;/P&gt;&lt;P&gt;route-map blabla&lt;/P&gt;&lt;P&gt;match some_acl&lt;/P&gt;&lt;P&gt;set metric 100000&lt;/P&gt;&lt;P&gt;interface some_interface&lt;/P&gt;&lt;P&gt;policy-route route-map blabla&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so for some network contained in some_acl I want to change metric when it is redistributed to rest of the network via eigrp.&lt;/P&gt;</description>
    <pubDate>Wed, 07 Feb 2024 22:01:30 GMT</pubDate>
    <dc:creator>DraganSkundric87318</dc:creator>
    <dc:date>2024-02-07T22:01:30Z</dc:date>
    <item>
      <title>asa interface route-map to change route metric</title>
      <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014429#M1108885</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can I use route map on interface to chane metric for some route? something like&lt;/P&gt;&lt;P&gt;route-map blabla&lt;/P&gt;&lt;P&gt;match some_acl&lt;/P&gt;&lt;P&gt;set metric 100000&lt;/P&gt;&lt;P&gt;interface some_interface&lt;/P&gt;&lt;P&gt;policy-route route-map blabla&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so for some network contained in some_acl I want to change metric when it is redistributed to rest of the network via eigrp.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 22:01:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014429#M1108885</guid>
      <dc:creator>DraganSkundric87318</dc:creator>
      <dc:date>2024-02-07T22:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: asa interface route-map to change route metric</title>
      <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014441#M1108887</link>
      <description>&lt;P&gt;I think Yes you&amp;nbsp; can use route-map when you redistribute static route into eigrp.&lt;/P&gt;
&lt;P&gt;You need to use route-map with redistrubte under bgp&lt;/P&gt;
&lt;P&gt;And it have two lines&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1- line for prefix you want to set metric&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2-line for prefix that use it defualt metric&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this way&lt;/P&gt;
&lt;P&gt;Goodluck&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MHM&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 06:16:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014441#M1108887</guid>
      <dc:creator>MHM Cisco World</dc:creator>
      <dc:date>2024-02-08T06:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: asa interface route-map to change route metric</title>
      <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014444#M1108888</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/1169250"&gt;@DraganSkundric87318&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;you can change the metric of a route using a route-map, but not in the way you wrote it.&lt;/P&gt;
&lt;P&gt;The route-map is correct, but you will have to use it in the redistribution of a routing protocol into another routing protocol:&lt;/P&gt;
&lt;PRE id="ID-2153-00000216__ID-2153-00000228" class="pre codeblock"&gt;&lt;CODE&gt;ciscoasa(config)# &lt;KBD class="userinput"&gt;&lt;STRONG id="ID-2153-00000216__ID-2153-0000022a" class="ph userinput"&gt;route outside 10.1.1.0 255.255.255.0 192.168.1.1&lt;/STRONG&gt;&lt;/KBD&gt;
ciscoasa(config-route-map)# &lt;KBD class="userinput"&gt;&lt;STRONG id="ID-2153-00000216__ID-2153-0000022d" class="ph userinput"&gt;access-list mymap2 line 1 permit 10.1.1.0 255.255.255.0&lt;/STRONG&gt;&lt;/KBD&gt;
ciscoasa(config-route-map)# &lt;KBD class="userinput"&gt;&lt;STRONG id="ID-2153-00000216__ID-2153-00000230" class="ph userinput"&gt;route-map mymap2 permit 10&lt;/STRONG&gt;&lt;/KBD&gt;
ciscoasa(config-route-map)# &lt;KBD class="userinput"&gt;&lt;STRONG id="ID-2153-00000216__ID-2153-00000233" class="ph userinput"&gt;match ip address mymap2&lt;/STRONG&gt;&lt;/KBD&gt;
ciscoasa(config-route-map)# &lt;KBD class="userinput"&gt;&lt;STRONG id="ID-2153-00000216__ID-2153-00000236" class="ph userinput"&gt;router eigrp 1&lt;/STRONG&gt;&lt;/KBD&gt;
ciscoasa(config-router)# &lt;KBD class="userinput"&gt;&lt;STRONG id="ID-2153-00000216__ID-2153-00000239" class="ph userinput"&gt;redistribute static metric 250 250 1 1 1 route-map mymap2&lt;/STRONG&gt;&lt;/KBD&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The policy-route route-map interface command configures policy routing or PBR, which means routing by other rules and not by looking at the routing table.&lt;/P&gt;
&lt;P&gt;You can find a more detailed explanation about the use of route maps here:&amp;nbsp;&lt;A href="https://www.cisco.com/c/en/us/td/docs/security/asa/asa94/config-guides/cli/general/asa-94-general-config/routes-maps.html" target="_blank"&gt;https://www.cisco.com/c/en/us/td/docs/security/asa/asa94/config-guides/cli/general/asa-94-general-config/routes-maps.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 22:23:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014444#M1108888</guid>
      <dc:creator>liviu.gheorghe</dc:creator>
      <dc:date>2024-02-07T22:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: asa interface route-map to change route metric</title>
      <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014541#M1108891</link>
      <description>&lt;P&gt;problem is I already have redistribution route map from static to eigrp for some other routes. And I need several routes to be redistributet with modified metric. And it is not possible to have two redistristribution static to eigrp&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 05:46:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014541#M1108891</guid>
      <dc:creator>DraganSkundric87318</dc:creator>
      <dc:date>2024-02-08T05:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: asa interface route-map to change route metric</title>
      <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014574#M1108893</link>
      <description>&lt;P&gt;Use two line in route-map as I mention above&lt;/P&gt;
&lt;P&gt;First one match prefix that you want to modify it metric with set command&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second line match any prefix without any set command&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MHM&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 06:45:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014574#M1108893</guid>
      <dc:creator>MHM Cisco World</dc:creator>
      <dc:date>2024-02-08T06:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: asa interface route-map to change route metric</title>
      <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014637#M1108895</link>
      <description>&lt;P&gt;You will have a route-map as follows:&lt;/P&gt;
&lt;PRE id="ID-2153-00000216__ID-2153-00000228" class="pre codeblock"&gt;&lt;CODE&gt;ciscoasa(config-route-map)# &lt;KBD class="userinput"&gt;&lt;STRONG id="ID-2153-00000216__ID-2153-00000230" class="ph userinput"&gt;route-map mymap2 permit 10&lt;/STRONG&gt;&lt;/KBD&gt;
ciscoasa(config-route-map)# &lt;KBD class="userinput"&gt;&lt;STRONG id="ID-2153-00000216__ID-2153-00000233" class="ph userinput"&gt;match ip address mymap2&lt;/STRONG&gt;&lt;/KBD&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;ciscoasa(config-route-map)# &lt;KBD class="userinput"&gt;&lt;STRONG id="ID-2153-00000216__ID-2153-00000230" class="ph userinput"&gt;route-map mymap2 permit 20&lt;/STRONG&gt;&lt;/KBD&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The first route-map entry will match the routes you want to modify the metric and the second route-map entry will match all the rest of the routes.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 07:10:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014637#M1108895</guid>
      <dc:creator>liviu.gheorghe</dc:creator>
      <dc:date>2024-02-08T07:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: asa interface route-map to change route metric</title>
      <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014831#M1108907</link>
      <description>&lt;P&gt;so, for example&amp;nbsp;&lt;/P&gt;&lt;P&gt;route-map test permit 10&lt;BR /&gt;match ip addr acl_default&lt;BR /&gt;route-map test permit 20&lt;BR /&gt;match ip addr acl_250&lt;BR /&gt;set metric 250 250 1 1 1&lt;/P&gt;&lt;P&gt;redistribute static route-map mymap2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;only acl_250 networks will be redistributed with changed metrics?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 13:15:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5014831#M1108907</guid>
      <dc:creator>DraganSkundric87318</dc:creator>
      <dc:date>2024-02-08T13:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: asa interface route-map to change route metric</title>
      <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5015067#M1108916</link>
      <description>&lt;P&gt;No, routes matching acl_default will be distributed with their seed metric and routes matching acl_250 will be redistributed with the change metric - the one configured with set metric.&lt;/P&gt;
&lt;P&gt;The seed metric is the one configured with the redistribution command, 250 250 1 1 1 in my example, or configured with the seed metric command.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 17:09:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5015067#M1108916</guid>
      <dc:creator>liviu.gheorghe</dc:creator>
      <dc:date>2024-02-08T17:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: asa interface route-map to change route metric</title>
      <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5015077#M1108917</link>
      <description>&lt;P&gt;this order is wrong&amp;nbsp;&lt;BR /&gt;the subnet (you need to set metric) is always match by first route-map line&amp;nbsp;&lt;BR /&gt;you need to SWAP the order&amp;nbsp;&lt;BR /&gt;make line 10 match ACL_250 set metric&amp;nbsp;&lt;BR /&gt;then line 20 match any ( in router IOS you dont need to match anyting it by default match any prefix not previous match by other UPPER&amp;nbsp; line)&lt;BR /&gt;MHM&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 17:20:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5015077#M1108917</guid>
      <dc:creator>MHM Cisco World</dc:creator>
      <dc:date>2024-02-08T17:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: asa interface route-map to change route metric</title>
      <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5015379#M1108940</link>
      <description>&lt;P&gt;well, this example is working ok, at least in GNS. Other side receives route for 3.3.3.3 with defaults and route for 4.4.4.4 with changed metric&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;interface Loopback1&lt;BR /&gt;ip address 2.2.2.1 255.255.255.255&lt;BR /&gt;!&lt;BR /&gt;interface FastEthernet0/0&lt;BR /&gt;ip address 1.1.1.1 255.255.255.252&lt;BR /&gt;duplex auto&lt;BR /&gt;speed auto&lt;BR /&gt;!&lt;/P&gt;&lt;P&gt;router eigrp 1&lt;BR /&gt;redistribute static route-map STATIC-TO-EIGRP1&lt;BR /&gt;network 0.0.0.0&lt;BR /&gt;no auto-summary&lt;BR /&gt;!&lt;BR /&gt;ip forward-protocol nd&lt;BR /&gt;ip route 3.3.3.3 255.255.255.255 Loopback1&lt;BR /&gt;ip route 4.4.4.4 255.255.255.255 Loopback1&lt;BR /&gt;!&lt;BR /&gt;!&lt;/P&gt;&lt;P&gt;ip access-list standard LISTA1&lt;BR /&gt;permit 3.3.3.3&lt;BR /&gt;ip access-list standard LISTA2&lt;BR /&gt;permit 4.4.4.4&lt;BR /&gt;!&lt;/P&gt;&lt;P&gt;route-map STATIC-TO-EIGRP1 permit 10&lt;BR /&gt;match ip address LISTA1&lt;BR /&gt;!&lt;BR /&gt;route-map STATIC-TO-EIGRP1 permit 20&lt;BR /&gt;match ip address LISTA2&lt;BR /&gt;set metric 1 10000 1 255 1500&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;!&lt;/P&gt;&lt;P&gt;UNUTRA#sh ip route 4.4.4.4&lt;BR /&gt;Routing entry for 4.4.4.4/32&lt;BR /&gt;Known via "eigrp 1", distance 170, metric 2562585600, type external&lt;BR /&gt;Redistributing via eigrp 1&lt;BR /&gt;Last update from 1.1.1.1 on FastEthernet0/0, 00:06:21 ago&lt;BR /&gt;Routing Descriptor Blocks:&lt;BR /&gt;* 1.1.1.1, from 1.1.1.1, 00:06:21 ago, via FastEthernet0/0&lt;BR /&gt;Route metric is 2562585600, traffic share count is 1&lt;BR /&gt;Total delay is 101000 microseconds, minimum bandwidth is 1 Kbit&lt;BR /&gt;Reliability 1/255, minimum MTU 1500 bytes&lt;BR /&gt;Loading 255/255, Hops 1&lt;/P&gt;&lt;P&gt;UNUTRA#sh ip route 3.3.3.3&lt;BR /&gt;Routing entry for 3.3.3.3/32&lt;BR /&gt;Known via "eigrp 1", distance 170, metric 409600, type external&lt;BR /&gt;Redistributing via eigrp 1&lt;BR /&gt;Last update from 1.1.1.1 on FastEthernet0/0, 00:16:52 ago&lt;BR /&gt;Routing Descriptor Blocks:&lt;BR /&gt;* 1.1.1.1, from 1.1.1.1, 00:16:52 ago, via FastEthernet0/0&lt;BR /&gt;Route metric is 409600, traffic share count is 1&lt;BR /&gt;Total delay is 6000 microseconds, minimum bandwidth is 10000 Kbit&lt;BR /&gt;Reliability 255/255, minimum MTU 1500 bytes&lt;BR /&gt;Loading 1/255, Hops 1&lt;/P&gt;&lt;P&gt;UNUTRA#&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 08:58:23 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5015379#M1108940</guid>
      <dc:creator>DraganSkundric87318</dc:creator>
      <dc:date>2024-02-09T08:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: asa interface route-map to change route metric</title>
      <link>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5015385#M1108943</link>
      <description>&lt;P&gt;it Work in previous order but each time you need to add prefix to your FW you need to include it in #&lt;SPAN&gt;match ip address LISTA1#&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;instead change the order make the default in end and match any&amp;nbsp;&lt;BR /&gt;this make route-map check Line-1 ACL for prefix need to modify if not match then will check Line-2 ACL which permit any&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;we need to make simple to us&amp;nbsp;&lt;BR /&gt;MHM&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 09:06:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-interface-route-map-to-change-route-metric/m-p/5015385#M1108943</guid>
      <dc:creator>MHM Cisco World</dc:creator>
      <dc:date>2024-02-09T09:06:13Z</dc:date>
    </item>
  </channel>
</rss>

