Routing

last person joined: 2 days ago 

Ask questions and share experiences about ACX Series, CTP Series, MX Series, PTX Series, SSR Series, JRR Series, and all things routing, including portfolios and protocols.
  • 1.  Prevent broadcast storm on MX480?

    Posted 03-28-2013 21:09

    HI all,

     

     

    Can someone show me the configuration to prevent broadcast storm on MX480 (VPLS environment) such as EX can do as per this url http://www.juniper.net/techpubs/en_US/junos10.3/topics/example/rate-limiting-storm-control-configuring.html

     

     

    thanks and appreciate someone feedback.



  • 2.  RE: Prevent broadcast storm on MX480?

    Posted 04-07-2013 11:29

     I am afraid there is no configuration for preventing broadcast storm like in EX2200.

    But let me check further.


    #MX480broadcast


  • 3.  RE: Prevent broadcast storm on MX480?
    Best Answer

    Posted 04-08-2013 02:51

    Hello,

    For VPLS on MX, You need to use VPLS flood filter with appropriate policer(s):

     

    aarseniev@mx# show firewall family vpls filter flood-filter-10M 
    
    term broadcast-traffic {
    
        from {
    
            traffic-type broadcast;
    
        }
    
        then {
    
            policer POLICER-BUM;
    
            accept;
    
        }
    
    }
    
    term multicast-traffic {
    
        from {
    
            traffic-type multicast;
    
        }
    
        then {
    
            policer POLICER-BUM;
    
            accept;
    
        }
    
    }
    
    term unknown-unicast-traffic {
    
        from {
    
            traffic-type unknown-unicast;
    
        }
    
        then {
    
            policer POLICER-BUM;
    
            accept;
    
        }
    
    }
    
     
    
    [edit]
    
    aarseniev@mx# show firewall policer POLICER-BUM 
    
    if-exceeding {
    
        bandwidth-limit 10m;
    
        burst-size-limit 10m;
    
    }
    
    then discard;
    
    
    routing-instances {
    
    	<RI-NAME> {
    
            forwarding-options {
    
                family vpls {
    
                    flood {
    
                        input flood-filter-10M;
    
                    }
    
                }
    
            }
    
        }
    
    }
    
    

     HTH

    Thanks
    Alex


    #MX480BroadcastSolution


  • 4.  RE: Prevent broadcast storm on MX480?

    Posted 04-21-2013 03:45

    hi aarseniv,

     

    mny thanks...



  • 5.  RE: Prevent broadcast storm on MX480?

    Posted 03-17-2016 03:21

    Hi -

     

    Woudln't the flood-filter also require a default term which accepts all?

     

    Thanks,

    Todd