Junos OS

 View Only
last person joined: 14 hours ago 

Ask questions and share experiences about Junos OS.
  • 1.  Why this command not supported in EX4300?

    Posted 12-04-2020 18:29

    Hi all,


    Based on this url Configuring Mirroring on EX4300 Switches to Analyze Traffic (CLI Procedure)  it should support on my EX4300 as per below version. But currently not. Is there any workaround to achieve same as config below?


    Model: ex4300-48t
    JUNOS EX Software Suite [13.2X51-D26.2]
    JUNOS FIPS mode utilities [13.2X51-D26.2]
    JUNOS Online Documentation [13.2X51-D26.2]
    JUNOS EX 4300 Software Suite [13.2X51-D26.2]





    {master:0}
    root@ex4300> show configuration firewall
    family ethernet-switching {
    PORT-MIRROR {
    term A-to-B {
    from {
    ##
    ## Warning: configuration block ignored: unsupported platform (ex4300-48t)
    ##
    source-address {
    1.1.1.1./32;
    }
    ##
    ## Warning: configuration block ignored: unsupported platform (ex4300-48t)
    ##
    destination-address {
    2.2.2.2/32;
    }
    }
    then port-mirror-instance port-mirror;
    }
    term B-to-A{
    from {
    ##
    ## Warning: configuration block ignored: unsupported platform (ex4300-48t)
    ##
    source-address {
    2.2.2.2/32;
    }
    ##
    ## Warning: configuration block ignored: unsupported platform (ex4300-48t)
    ##
    destination-address {
    1.1.1.1/32;
    }
    }
    then port-mirror-instance port-mirror;
    }
    term other-traffic {
    then accept;
    }
    }
    }


    Thanks and appreciate any feedback


  • 2.  RE: Why this command not supported in EX4300?
    Best Answer

     
    Posted 12-04-2020 18:38
    Hi kronicklez,

    The reason of the commit error is that you are using family ethernet-switching for the filter, the syntax will change, as you can see below,
    root@M10-42# ...ernet-switching filter test term 1 from ?
    > ip-destination-address Match IP destination address
    > ip-source-address Match IP source address
    Please try to use those options instead of source-address and destination-address.

    If this works for you please mark this as "Solved"

    Regards,
    Jeff


  • 3.  RE: Why this command not supported in EX4300?

    Posted 12-04-2020 23:51
    Hi Jeff,


    Noted. It works. Thanks


  • 4.  RE: Why this command not supported in EX4300?

     
    Posted 12-05-2020 14:00
    Good to hear, 

    You are welcome.