<?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 Help writing  a flow  redirect acl in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-writing-a-flow-redirect-acl/m-p/47196#M12094</link>
    <description>What I am attempting to do is to push any outbound port 80 traffic (https too but not in this example) to the internet with a flow redirect command but skip if the traffic is local.  So here's what I have so far:   the ** are comments for the sake of this post.  Does this make sense?&lt;BR /&gt;
&lt;BR /&gt;
ACL&lt;BR /&gt;
&lt;BR /&gt;
entry Allhttp {&lt;BR /&gt;
if { &lt;BR /&gt;
    protocol tcp;  &lt;BR /&gt;
    source-address 10.234.0.0/16;&lt;BR /&gt;
    destination-address 10.234.0.0/16;   &lt;BR /&gt;
    source-port 80;&lt;BR /&gt;
}&lt;BR /&gt;
then {  &lt;BR /&gt;
      Deny;     ** in essence skip&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
** so if not the above do this. &lt;BR /&gt;
&lt;BR /&gt;
if { &lt;BR /&gt;
    protocol tcp;  &lt;BR /&gt;
    source-address 10.234.0.0/16;&lt;BR /&gt;
    source-port 80;&lt;BR /&gt;
}&lt;BR /&gt;
then {&lt;BR /&gt;
&lt;BR /&gt;
    redirect-name ToBluecoat;  &lt;BR /&gt;
    count WebHTTP;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;</description>
    <pubDate>Tue, 15 Aug 2017 02:09:00 GMT</pubDate>
    <dc:creator>Dave_Bogdan</dc:creator>
    <dc:date>2017-08-15T02:09:00Z</dc:date>
    <item>
      <title>Help writing  a flow  redirect acl</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-writing-a-flow-redirect-acl/m-p/47196#M12094</link>
      <description>What I am attempting to do is to push any outbound port 80 traffic (https too but not in this example) to the internet with a flow redirect command but skip if the traffic is local.  So here's what I have so far:   the ** are comments for the sake of this post.  Does this make sense?&lt;BR /&gt;
&lt;BR /&gt;
ACL&lt;BR /&gt;
&lt;BR /&gt;
entry Allhttp {&lt;BR /&gt;
if { &lt;BR /&gt;
    protocol tcp;  &lt;BR /&gt;
    source-address 10.234.0.0/16;&lt;BR /&gt;
    destination-address 10.234.0.0/16;   &lt;BR /&gt;
    source-port 80;&lt;BR /&gt;
}&lt;BR /&gt;
then {  &lt;BR /&gt;
      Deny;     ** in essence skip&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
** so if not the above do this. &lt;BR /&gt;
&lt;BR /&gt;
if { &lt;BR /&gt;
    protocol tcp;  &lt;BR /&gt;
    source-address 10.234.0.0/16;&lt;BR /&gt;
    source-port 80;&lt;BR /&gt;
}&lt;BR /&gt;
then {&lt;BR /&gt;
&lt;BR /&gt;
    redirect-name ToBluecoat;  &lt;BR /&gt;
    count WebHTTP;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Aug 2017 02:09:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-writing-a-flow-redirect-acl/m-p/47196#M12094</guid>
      <dc:creator>Dave_Bogdan</dc:creator>
      <dc:date>2017-08-15T02:09:00Z</dc:date>
    </item>
    <item>
      <title>RE: Help writing  a flow  redirect acl</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-writing-a-flow-redirect-acl/m-p/47197#M12095</link>
      <description>Hi Dave,&lt;BR /&gt;
&lt;BR /&gt;
The rules which you have mentioned needs to be modified a bit. &lt;BR /&gt;
&lt;BR /&gt;
Instead of "deny" using the "permit" action modifier will apply the normal forwarding logic.&lt;BR /&gt;
&lt;BR /&gt;
All the below rules must be in same policy file.&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;&lt;U&gt;Here is a sample.&lt;/U&gt;&lt;/B&gt;&lt;BR /&gt;
entry HTTP_PACKETS_TO_10.234.0.0 {&lt;BR /&gt;
If match all {&lt;BR /&gt;
Protocol TCP;&lt;BR /&gt;
destination-port 80;&lt;BR /&gt;
source-address 10.234.0.0/16;&lt;BR /&gt;
destination-address 10.234.0.0/16;&lt;BR /&gt;
} then {&lt;BR /&gt;
permit;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
# same subnet but matching https traffic&lt;BR /&gt;
entry HTTPS_PACKETS_TO_10.234.0.0 {&lt;BR /&gt;
If match all {&lt;BR /&gt;
Protocol TCP;&lt;BR /&gt;
destination-port 443;&lt;BR /&gt;
source-address 10.234.0.0/16;&lt;BR /&gt;
destination-address 10.234.0.0/16;&lt;BR /&gt;
} then {&lt;BR /&gt;
permit;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
entry HTTP_to_other_than_10.234.0.0/16 {&lt;BR /&gt;
if match all {&lt;BR /&gt;
    protocol TCP ;&lt;BR /&gt;
    destination-port 80 ;&lt;BR /&gt;
    source-address 10.234.0.0/16 ;&lt;BR /&gt;
}&lt;BR /&gt;
then {&lt;BR /&gt;
    redirect-name ToBluecoat;  &lt;BR /&gt;
    count WebHTTP;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
entry HTTPS_to_other_than_10.234.0.0/16  {&lt;BR /&gt;
if match all {&lt;BR /&gt;
    protocol TCP ;&lt;BR /&gt;
    destination-port 443 ;&lt;BR /&gt;
    source-address 10.234.0.0/16 ;&lt;BR /&gt;
}&lt;BR /&gt;
then {&lt;BR /&gt;
    redirect-name ToBluecoat;  &lt;BR /&gt;
    count WebHTTPS;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
Here is an article on how to configure flow redirect.&lt;BR /&gt;
&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;&lt;BR /&gt;
&lt;BR /&gt;
I hope this is helps!&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Aug 2017 11:04:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-writing-a-flow-redirect-acl/m-p/47197#M12095</guid>
      <dc:creator>Karthik_Mohando</dc:creator>
      <dc:date>2017-08-15T11:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: Help writing  a flow  redirect acl</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-writing-a-flow-redirect-acl/m-p/47198#M12096</link>
      <description>Perfect!!  Thank you.  I'll test it later this week.</description>
      <pubDate>Wed, 16 Aug 2017 05:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/help-writing-a-flow-redirect-acl/m-p/47198#M12096</guid>
      <dc:creator>Dave_Bogdan</dc:creator>
      <dc:date>2017-08-16T05:07:00Z</dc:date>
    </item>
  </channel>
</rss>

