Switching

last person joined: 15 hours ago 

Ask questions and share experiences about EX and QFX portfolios and all switching solutions across your data center, campus, and branch locations.
  • 1.  EX3300-Virtual Chassis Link Aggregation on Layer 2 Uplink

    Posted 03-31-2014 08:42

    Hi,

     

    I have two EX3300 setup in Virtual Chassis. The switch sits between my ISP and redundant firewalls (pfsense),

     

    All three ports (ISP, Primary Firewall and backup firewall) are configured as Layer 2 Uplink in the EX-3300.

     

    ge0/0/0 port rule: layer 2 uplink  --> ISP

    ge0/0/1 port rule: layer 2 uplink --> Firewall A

     

    ge1/0/0 port rule: layer 2 uplink --> Firewall B

     

    Currently, I have one connection from my ISP and I'd like to have some redundancy there. Our ISP is in the same data-center as us, and I can get a second cable from them. My ISP wants me to setup link aggregation.

     

    How can I setup link aggregation when the port is configured as Layer 2 Uplink? Can someone please provide some advise here?

     

    Thanks.

     



  • 2.  RE: EX3300-Virtual Chassis Link Aggregation on Layer 2 Uplink

     
    Posted 03-31-2014 23:20

    You need to configure the currently used interface as child link of an aggregate and also add another physical interface as the secnd child link of the aggregate. After that, all VLAN/port mode configuration is done on the aggregate.

     

    {master:0}[edit]
    root@EX4200# show interfaces xe-0/1/2     
    hold-time up 5000 down 0;
    ether-options {
        802.3ad ae0;
    }

    {master:0}[edit]
    root@EX4200# show interfaces xe-1/1/2    
    hold-time up 5000 down 0;
    ether-options {
        802.3ad ae0;
    }

    {master:0}[edit]
    root@EX4200# show interfaces ae0
    aggregated-ether-options {
        lacp {
            active;
            periodic fast;
        }
    }
    unit 0 {
        family ethernet-switching {
            port-mode trunk;
            vlan {
                members all;
            }
        }
    }

    {master:0}[edit]
    root@EX4200#



  • 3.  RE: EX3300-Virtual Chassis Link Aggregation on Layer 2 Uplink

    Posted 04-01-2014 12:48

    Thanks you. Based on your response, then "Layer 2 Uplike" profile is same as making a port mode trunk, correct?

     

     

     



  • 4.  RE: EX3300-Virtual Chassis Link Aggregation on Layer 2 Uplink
    Best Answer

     
    Posted 04-02-2014 01:41

    Yes, just move the configuration that you now have on the single physical link to the aggregate interface.



  • 5.  RE: EX3300-Virtual Chassis Link Aggregation on Layer 2 Uplink

    Posted 04-02-2014 07:45

    OK. Thanks.