<?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: Secondary ISP using Policy Based Routing in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/secondary-isp-using-policy-based-routing/m-p/4630935#M1090901</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I agree with Mr.&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/97036"&gt;@Rob Ingram&lt;/a&gt;&amp;nbsp; solution.&amp;nbsp;&lt;BR /&gt;make it simple.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jun 2022 12:48:00 GMT</pubDate>
    <dc:creator>MHM Cisco World</dc:creator>
    <dc:date>2022-06-14T12:48:00Z</dc:date>
    <item>
      <title>Secondary ISP using Policy Based Routing</title>
      <link>https://community.cisco.com/t5/network-security/secondary-isp-using-policy-based-routing/m-p/4630911#M1090897</link>
      <description>&lt;P&gt;Here is my situation.&amp;nbsp; I need to route my guest traffic out a secondary ISP.&amp;nbsp; I need my normal traffic to route out my primary ISP so I intend to use PBR to accomplish this.&amp;nbsp; Does the below config look like it will accomplish this task?&lt;/P&gt;&lt;P&gt;I have kept out the actual public IP for security reasons.&amp;nbsp; They are listed as &lt;EM&gt;Secondary.ISP.IP&lt;/EM&gt; and &lt;EM&gt;Primary.ISP.IP&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;My internal Guest traffic is 10.2.0.0/16.&amp;nbsp; My Internal traffic is everything else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/0&lt;BR /&gt;nameif Secondary.ISP&lt;BR /&gt;security-level 0&lt;BR /&gt;ip address &lt;EM&gt;Secondary.ISP.IP&lt;/EM&gt; 255.255.255.248&lt;BR /&gt;policy-route route-map PBR&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;!Define the traffic to route out the Secondary ISP interface&lt;/P&gt;&lt;P&gt;access-list PBR_ACL1 extended permit ip 10.2.0.0 255.255.0.0 any&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;!Define the traffic to route out the Primary.ISP Internet.&lt;BR /&gt;access-list PBR_ACL2 extended permit ip 10.0.0.0 255.0.0.0 any&lt;BR /&gt;access-list PBR_ACL2 extended permit ip 192.168.0.0 255.255.0.0 any&lt;BR /&gt;access-list PBR_ACL2 extended permit ip 172.16.0.0 255.240.0.0 any&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Create the route map to change the route to the secondary ALLO interface.&lt;BR /&gt;route-map PBR permit 10&lt;BR /&gt;match ip address PBR_ACL1&lt;BR /&gt;set ip next-hop &lt;EM&gt;Primary.ISP.IP&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;route-map PBR permit 20&lt;BR /&gt;match ip address PBR_ACL2&lt;BR /&gt;set ip next-hop &lt;EM&gt;Secondary.ISP.IP&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Apply the route map to the Internal interface.&lt;BR /&gt;!interface Port-channel1&lt;BR /&gt;!nameif Inside&lt;BR /&gt;!security-level 100&lt;BR /&gt;!ip address 10.100.10.2 255.255.255.0 standby 10.100.10.3&lt;BR /&gt;policy-route route-map&lt;/P&gt;&lt;P&gt;Apply the route map to the Guest interface to change the route.&lt;BR /&gt;interface Port-channel2.2&lt;BR /&gt;! vlan 2&lt;BR /&gt;!nameif Guest&lt;BR /&gt;!security-level 25&lt;BR /&gt;!ip address 10.2.0.1 255.255.0.0 standby 10.2.0.2&lt;BR /&gt;policy-route route-map PBR&lt;/P&gt;&lt;P&gt;interface Port-channel2.666&lt;BR /&gt;vlan 666&lt;BR /&gt;nameif DMZ&lt;BR /&gt;security-level 50&lt;BR /&gt;ip address 10.1.0.1 255.255.0.0 standby 10.1.0.2&lt;BR /&gt;policy-route route-map&lt;/P&gt;&lt;P&gt;Remove the existing NAT statement for Guest because the IP will be different.&lt;BR /&gt;no object network Public&lt;BR /&gt;! nat (Guest,Outside) dynamic&lt;EM&gt; Seconary.ISP.IP&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Set the new NAT statement so the Guest traffic is routable.&lt;BR /&gt;object network Public&lt;BR /&gt;subnet 10.2.0.0 255.255.0.0&lt;BR /&gt;nat (Guest,Allo) dynamic &lt;EM&gt;Secondary.ISP.IP&lt;/EM&gt;&lt;BR /&gt;This is already there and is the default route for everything else.&lt;BR /&gt;!route Outside 0.0.0.0 0.0.0.0 &lt;EM&gt;Primary.ISP.IP&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2022 16:48:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/secondary-isp-using-policy-based-routing/m-p/4630911#M1090897</guid>
      <dc:creator>mdieken011</dc:creator>
      <dc:date>2022-06-13T16:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Secondary ISP using Policy Based Routing</title>
      <link>https://community.cisco.com/t5/network-security/secondary-isp-using-policy-based-routing/m-p/4630920#M1090898</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/85597"&gt;@mdieken011&lt;/a&gt; I would just keep it simple. Just use PBR to redirect the guest traffic via the Secondary ISP.&lt;/P&gt;
&lt;P&gt;The normal traffic would be routed via the default route, no need to define PBR for that.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2022 16:57:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/secondary-isp-using-policy-based-routing/m-p/4630920#M1090898</guid>
      <dc:creator>Rob Ingram</dc:creator>
      <dc:date>2022-06-13T16:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Secondary ISP using Policy Based Routing</title>
      <link>https://community.cisco.com/t5/network-security/secondary-isp-using-policy-based-routing/m-p/4630935#M1090901</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I agree with Mr.&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/97036"&gt;@Rob Ingram&lt;/a&gt;&amp;nbsp; solution.&amp;nbsp;&lt;BR /&gt;make it simple.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 12:48:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/secondary-isp-using-policy-based-routing/m-p/4630935#M1090901</guid>
      <dc:creator>MHM Cisco World</dc:creator>
      <dc:date>2022-06-14T12:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: Secondary ISP using Policy Based Routing</title>
      <link>https://community.cisco.com/t5/network-security/secondary-isp-using-policy-based-routing/m-p/4630938#M1090903</link>
      <description>Agreed with Rob. Also, swap your PBR priority order. Your current order&lt;BR /&gt;will match guest under 10.0.0.0 and route it over primary.&lt;BR /&gt;&lt;BR /&gt;***** please remember to rate useful posts&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Jun 2022 17:25:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/secondary-isp-using-policy-based-routing/m-p/4630938#M1090903</guid>
      <dc:creator>Mohammed al Baqari</dc:creator>
      <dc:date>2022-06-13T17:25:19Z</dc:date>
    </item>
  </channel>
</rss>

