<?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: How to block all multicast traffic on port? in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41570#M9601</link>
    <description>Not exactly. It was about a specific vlan. &lt;BR /&gt;
&lt;BR /&gt;
I'm thinking it might be a better way to block multicast traffic on port with the help of disable multicast flooding, ingress rate-limiting or something like that.</description>
    <pubDate>Tue, 02 Jun 2015 15:58:00 GMT</pubDate>
    <dc:creator>eyeV</dc:creator>
    <dc:date>2015-06-02T15:58:00Z</dc:date>
    <item>
      <title>How to block all multicast traffic on port?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41562#M9593</link>
      <description>Hi everybody!&lt;BR /&gt;
My question is Which is most efficient way to block all ingress multicast traffic on port?</description>
      <pubDate>Tue, 02 Jun 2015 15:30:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41562#M9593</guid>
      <dc:creator>eyeV</dc:creator>
      <dc:date>2015-06-02T15:30:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to block all multicast traffic on port?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41563#M9594</link>
      <description>The simpliest method would be creating an ACL.&lt;BR /&gt;
&lt;BR /&gt;
Apply the following ACL on the ports or vlans.&lt;BR /&gt;
&lt;BR /&gt;
entry BlkMcast {&lt;BR /&gt;
 if {&lt;BR /&gt;
  destination-address 224.0.0.0/4;&lt;BR /&gt;
 }&lt;BR /&gt;
 then {&lt;BR /&gt;
  deny;&lt;BR /&gt;
  count BlockedMcast;&lt;BR /&gt;
 }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
This will block also 244.0.0.x multicasts, if you have OSPF or any other routing protocol running you might need to permit that before this block statement.</description>
      <pubDate>Tue, 02 Jun 2015 15:36:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41563#M9594</guid>
      <dc:creator>OscarK</dc:creator>
      <dc:date>2015-06-02T15:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to block all multicast traffic on port?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41564#M9595</link>
      <description>Thank you!&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Jun 2015 15:36:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41564#M9595</guid>
      <dc:creator>eyeV</dc:creator>
      <dc:date>2015-06-02T15:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to block all multicast traffic on port?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41565#M9596</link>
      <description>If the switch is L2 only, or you need to block multicast within the VLAN then a mac address filter for the multicast bit in the MAC address would be needed (or, more simply, block any MAC address starting 01 - which has the useful side effect of not blocking broadcast traffic too).&lt;BR /&gt;
&lt;BR /&gt;
So an acl that looked like this might be better:&lt;BR /&gt;
&lt;BR /&gt;
entry BlockL2Mcast {&lt;BR /&gt;
 if {&lt;BR /&gt;
    ethernet-destination-address 01:00:00:00:00:00 mask ff:00:00:00:00:00;&lt;BR /&gt;
    }&lt;BR /&gt;
then {&lt;BR /&gt;
    deny;&lt;BR /&gt;
    count BlockedMcast;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
However, as others have said, this will break OSPF, VRRP, HSRP and a lot of IPv6.  You'd be better off not doing this unless there's a very good reason.&lt;BR /&gt;
&lt;BR /&gt;
Paul.&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Jun 2015 15:36:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41565#M9596</guid>
      <dc:creator>Paul_Thornton</dc:creator>
      <dc:date>2015-06-02T15:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to block all multicast traffic on port?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41566#M9597</link>
      <description>No, even if the switch is L2 you can block on destination-address.</description>
      <pubDate>Tue, 02 Jun 2015 15:36:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41566#M9597</guid>
      <dc:creator>OscarK</dc:creator>
      <dc:date>2015-06-02T15:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to block all multicast traffic on port?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41567#M9598</link>
      <description>You could create a Policy that tells the port to drop Multicast traffic, but why would you want to?  A lot of essential network services, Routing Protocols (OSPF, RIP, etc), network services like DHCP, IGMP, VRRP, Link-local name resolution, video and audio conferencing rely on Multicast traffic to efficiently get packets around your network.  And if configured rightly, Multicast traffic can potentially only account for a fraction of network traffic</description>
      <pubDate>Tue, 02 Jun 2015 15:43:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41567#M9598</guid>
      <dc:creator>Kawawa</dc:creator>
      <dc:date>2015-06-02T15:43:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to block all multicast traffic on port?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41568#M9599</link>
      <description>We decided to do it because we find strange multicast activity in our network. We are going to block all multicast traffic from particular segments for diagnostic.&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Jun 2015 15:43:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41568#M9599</guid>
      <dc:creator>eyeV</dc:creator>
      <dc:date>2015-06-02T15:43:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to block all multicast traffic on port?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41569#M9600</link>
      <description>Is it duplicate thread?&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="https://community.extremenetworks.com/extreme/topics/how_to_block_multicast_traffic_in_specific_vlan" target="_blank" rel="nofollow noreferrer noopener"&gt;https://community.extremenetworks.com/extreme/topics/how_to_block_multicast_traffic_in_specific_vlan&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Jun 2015 15:58:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41569#M9600</guid>
      <dc:creator>Sumit_Tokle</dc:creator>
      <dc:date>2015-06-02T15:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to block all multicast traffic on port?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41570#M9601</link>
      <description>Not exactly. It was about a specific vlan. &lt;BR /&gt;
&lt;BR /&gt;
I'm thinking it might be a better way to block multicast traffic on port with the help of disable multicast flooding, ingress rate-limiting or something like that.</description>
      <pubDate>Tue, 02 Jun 2015 15:58:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/how-to-block-all-multicast-traffic-on-port/m-p/41570#M9601</guid>
      <dc:creator>eyeV</dc:creator>
      <dc:date>2015-06-02T15:58:00Z</dc:date>
    </item>
  </channel>
</rss>

