Switching

last person joined: 2 days ago 

Ask questions and share experiences about EX and QFX portfolios and all switching solutions across your data center, campus, and branch locations.
  • 1.  Apply Groups for LAG interfaces

    Posted 07-24-2015 03:10

    Hi,

     

    i have around 30 LAG interfaces(ae interface)  all these vlans will be trunk port and have common vlans.

     

    since interface range is not supported for LAG interfaces can i achieve grouping LAG interfaces apply vlan members for all LAG interfaces in one go.

     

    is this possible with apply groups? if yes can you pleasee help me with configuration?

     

    Regards,

    Mahesh

     

     



  • 2.  RE: Apply Groups for LAG interfaces
    Best Answer

    Posted 07-24-2015 08:09

    Hello,

     

    Please try below:

     

    set groups lag interfaces <ae*> unit 0 family ethernet-switching vlan members test-1000
    set interfaces apply-groups lag

     

    above group will apply vlan test-1000 to all AE/LAG interfaces

    {master:0}[edit]
    root@test# show interfaces ae1 | display inheritance
    aggregated-ether-options {
        link-speed 1g;
        lacp {
            active;
        }
    }
    unit 0 {
        family ethernet-switching {
            interface-mode trunk;
            
            vlan {
                
                ## 'test-1000' was inherited from group 'lag'   >>> here we can see vlan test-1000 was inherited from group "lag"
                
                members [ test-1000 ];
            }
        }
    }                                       

     

     

    =======================================================

    Please Mark My Solution Accepted if it Helped, Kudos are Appreciated Too



  • 3.  RE: Apply Groups for LAG interfaces

    Posted 07-24-2015 08:33

    Kudos:)

     

    Thanks.. it worked for me..

     

    Since i had a mixture of L3 and L2 LAG interfaces, i had to apply groups for every individual L2 LAG  interface.