<?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: Help required to configure policy based routing in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-required-to-configure-policy-based-routing/m-p/91926#M21390</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Instead of literal line-by-line translation, it might be easier to think on the goal and adapt these steps:&lt;/P&gt;&lt;OL type="1"&gt;&lt;LI&gt;Create a .pol file on your laptop and deliver to the switch (could be done through switch web UI with Apps &amp;gt; file browser). It will consist of entries for each set of criteria and next-hop group ie. flow redirect name (like route maps but different naming, isn’t it?).&lt;/LI&gt;&lt;/OL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Entry redirect {&lt;BR /&gt;If match all {&lt;BR /&gt;source-address 192.0.2.0/24;&lt;BR /&gt;} then {&lt;BR /&gt;permit;&lt;BR /&gt;redirect-name GTAC_redirect;&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Just adjust address there and redirect-name to what you’ll create in the next step.&lt;/P&gt;&lt;OL type="1" start="2"&gt;&lt;LI&gt;Create a flow-redirect, a set of hops (like in a route map) under a single name:&lt;/LI&gt;&lt;/OL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;create flow-redirect GTAC_redirect&lt;/P&gt;&lt;P&gt;configure flow-redirect GTAC_redirect add nexthop 172.16.98.5 priority 100&lt;/P&gt;&lt;P&gt;configure flow-redirect GTAC_redirect add nexthop 10.6.158.29 priority 90&lt;/P&gt;&lt;P&gt;configure flow-redirect GTAC_redirect add nexthop 10.20.30.101 priority&amp;nbsp; 80&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;OL type="1" start="3"&gt;&lt;LI&gt;You can configure a next-hop checks, like that ip sla reachability I believe…&lt;/LI&gt;&lt;/OL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;configure flow-redirect GTAC_redirect nexthop 172.16.98.5 ping health-check interval 20 miss 2&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;OL type="1" start="4"&gt;&lt;LI&gt;Apply the ACL (policy file) to an interface or VLAN or entire switch:&lt;/LI&gt;&lt;/OL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;configure access-list /name/ ports 1 ingress&lt;/P&gt;&lt;P&gt;configure access-list /name/ vlan “test” ingress&lt;/P&gt;&lt;P&gt;configure access-list /name/ any&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it’s still a problem, please let us know what actually is not working for you, what kind of error message etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Tomasz&lt;/P&gt;</description>
    <pubDate>Sat, 05 Jun 2021 05:38:06 GMT</pubDate>
    <dc:creator>Tomasz</dc:creator>
    <dc:date>2021-06-05T05:38:06Z</dc:date>
    <item>
      <title>Help required to configure policy based routing</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-required-to-configure-policy-based-routing/m-p/91923#M21387</link>
      <description>&lt;P&gt;cisco config --&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;track 14 ip sla 14 reachability&lt;BR /&gt;!&lt;BR /&gt;track 20 ip sla 20 reachability&lt;BR /&gt;!&lt;BR /&gt;track 30 ip sla 30 reachability&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip sla 14&lt;BR /&gt;&amp;nbsp;icmp-echo 172.16.98.5 source-ip 172.16.98.6&lt;BR /&gt;&amp;nbsp;frequency 20&lt;BR /&gt;ip sla schedule 14 life forever start-time now&lt;/P&gt;&lt;P&gt;ip sla 20&lt;BR /&gt;&amp;nbsp;icmp-echo 10.6.158.29 source-ip 10.6.158.30&lt;BR /&gt;&amp;nbsp;frequency 20&lt;BR /&gt;ip sla schedule 20 life forever start-time now&lt;/P&gt;&lt;P&gt;ip sla 30&lt;BR /&gt;&amp;nbsp;icmp-echo 10.20.30.101 source-ip 10.20.30.102&lt;BR /&gt;&amp;nbsp;frequency 30&lt;BR /&gt;ip sla schedule 30 life forever start-time now&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;route-map PGCIL permit 10&lt;BR /&gt;&amp;nbsp;match ip address 199&lt;BR /&gt;&amp;nbsp;set ip next-hop verify-availability 172.16.98.5 1 track 14&lt;BR /&gt;&amp;nbsp;set ip next-hop verify-availability 10.6.158.29 5 track 20&lt;BR /&gt;&amp;nbsp;set ip next-hop verify-availability 10.20.30.101 10 track 30&lt;BR /&gt;!&lt;BR /&gt;route-map TCL permit 10&lt;BR /&gt;&amp;nbsp;match ip address 188&lt;BR /&gt;&amp;nbsp;set ip next-hop verify-availability 10.6.158.29 1 track 20&lt;BR /&gt;!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip route 172.16.200.222 255.255.255.255 172.16.98.5 track 14&lt;BR /&gt;ip route 172.16.202.52 255.255.255.255 172.16.98.5 track 14&lt;BR /&gt;ip route 172.16.202.47 255.255.255.255 172.16.98.5 track 14&lt;BR /&gt;ip route 0.0.0.0 0.0.0.0 172.16.98.5 40 track 14&lt;BR /&gt;ip route 172.16.108.71 255.255.255.255 10.6.158.29 track 20&lt;BR /&gt;ip route 172.16.208.68 255.255.255.255 10.6.158.29 track 20&lt;BR /&gt;ip route 172.16.207.53 255.255.255.255 10.6.158.29 track 20&lt;BR /&gt;ip route 172.16.108.72 255.255.255.255 10.6.158.29 track 20&lt;/P&gt;</description>
      <pubDate>Mon, 12 Oct 2020 11:54:40 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-required-to-configure-policy-based-routing/m-p/91923#M21387</guid>
      <dc:creator>ddpatil89</dc:creator>
      <dc:date>2020-10-12T11:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help required to configure policy based routing</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-required-to-configure-policy-based-routing/m-p/91924#M21388</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Flow-Redirect is the keyword.&amp;nbsp;&lt;A href="https://gtacknowledge.extremenetworks.com/articles/How_To/How-to-configure-flow-redirect" target="_blank" rel="nofollow noreferrer noopener"&gt;https://gtacknowledge.extremenetworks.com/articles/How_To/How-to-configure-flow-redirect&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;Stefan&lt;/P&gt;</description>
      <pubDate>Mon, 12 Oct 2020 18:02:31 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-required-to-configure-policy-based-routing/m-p/91924#M21388</guid>
      <dc:creator>Stefan_K_</dc:creator>
      <dc:date>2020-10-12T18:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help required to configure policy based routing</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-required-to-configure-policy-based-routing/m-p/91925#M21389</link>
      <description>&lt;P&gt;Can anyone help me to convert above cisco command to extreme commands? I followed link shared by Stefan but unable to execute working config.&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 15:29:52 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-required-to-configure-policy-based-routing/m-p/91925#M21389</guid>
      <dc:creator>ddpatil89</dc:creator>
      <dc:date>2021-05-25T15:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help required to configure policy based routing</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-required-to-configure-policy-based-routing/m-p/91926#M21390</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Instead of literal line-by-line translation, it might be easier to think on the goal and adapt these steps:&lt;/P&gt;&lt;OL type="1"&gt;&lt;LI&gt;Create a .pol file on your laptop and deliver to the switch (could be done through switch web UI with Apps &amp;gt; file browser). It will consist of entries for each set of criteria and next-hop group ie. flow redirect name (like route maps but different naming, isn’t it?).&lt;/LI&gt;&lt;/OL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Entry redirect {&lt;BR /&gt;If match all {&lt;BR /&gt;source-address 192.0.2.0/24;&lt;BR /&gt;} then {&lt;BR /&gt;permit;&lt;BR /&gt;redirect-name GTAC_redirect;&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Just adjust address there and redirect-name to what you’ll create in the next step.&lt;/P&gt;&lt;OL type="1" start="2"&gt;&lt;LI&gt;Create a flow-redirect, a set of hops (like in a route map) under a single name:&lt;/LI&gt;&lt;/OL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;create flow-redirect GTAC_redirect&lt;/P&gt;&lt;P&gt;configure flow-redirect GTAC_redirect add nexthop 172.16.98.5 priority 100&lt;/P&gt;&lt;P&gt;configure flow-redirect GTAC_redirect add nexthop 10.6.158.29 priority 90&lt;/P&gt;&lt;P&gt;configure flow-redirect GTAC_redirect add nexthop 10.20.30.101 priority&amp;nbsp; 80&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;OL type="1" start="3"&gt;&lt;LI&gt;You can configure a next-hop checks, like that ip sla reachability I believe…&lt;/LI&gt;&lt;/OL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;configure flow-redirect GTAC_redirect nexthop 172.16.98.5 ping health-check interval 20 miss 2&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;OL type="1" start="4"&gt;&lt;LI&gt;Apply the ACL (policy file) to an interface or VLAN or entire switch:&lt;/LI&gt;&lt;/OL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;configure access-list /name/ ports 1 ingress&lt;/P&gt;&lt;P&gt;configure access-list /name/ vlan “test” ingress&lt;/P&gt;&lt;P&gt;configure access-list /name/ any&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it’s still a problem, please let us know what actually is not working for you, what kind of error message etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Tomasz&lt;/P&gt;</description>
      <pubDate>Sat, 05 Jun 2021 05:38:06 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-required-to-configure-policy-based-routing/m-p/91926#M21390</guid>
      <dc:creator>Tomasz</dc:creator>
      <dc:date>2021-06-05T05:38:06Z</dc:date>
    </item>
  </channel>
</rss>

