Switching

last person joined: 20 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.  VLAN Switching Help

    Posted 10-17-2012 10:01

    Hi,

     

    So, I'm trying to get familiar with a new Juniper EX2200 and having some issues understanding concepts compared to our old HP ProCurve switches. This setup I'm doing for a client is super easy but I just can't seem to figure out the correct configuration.

     

    Basically, I have a router running pfSense 2.0.1 with 3 ports (1 WAN, 1 LAN, 1 OPT) and one Juniper EX2200 switch. At this point, I only need 2 VLANs running. I have pfSense configured with the VLAN information, DHCP running on the VLANs and all that jazz. The problem comes into play with setting up the Juniper switch configuration.

     

    I currently have the LAN and OPT port coming in on port 0 and 1 respectively. These two ports are set up as trunks, with the 2 VLANs I need added to them. There is not any native vlan set. To test, I've tagged port 2 with access to 1 VLAN, and port 3 with access to the other VLAN.

     

    Neither are able to get any connection.

     

    If I don't use VLANs, just connect the LAN port into the Juniper switch, it receives an IP just fine.

     

    Is my high level view of how this should work incorrect? Any help would be appreciated!



  • 2.  RE: VLAN Switching Help

    Posted 10-17-2012 10:27

    Here's some of my config as well

     

    interfaces {
    ge-0/0/0 {
    unit 0 {
    family ethernet-switching {
    port-mode trunk;
    vlan {
    members [ V1-DATA V10-GUEST ];
    }
    }
    }
    }
    ge-0/0/1 {
    unit 0 {
    family ethernet-switching {
    port-mode trunk;
    vlan {
    members [ V1-DATA V10-GUEST ];

    }

    }

    }

    }

    ge-0/0/2 {
    unit 0 {
    family ethernet-switching {
    port-mode access;
    vlan {
    members V1-DATA;
    }
    }
    }
    }

    ge-0/0/3 {
    unit 0 {
    family ethernet-switching {
    port-mode access;
    vlan {
    members V10-GUEST;
    }
    }
    }
    }

     

    routing-options {
    static {
    route 0.0.0.0/0 next-hop 172.0.0.1;
    }
    }
    protocols {
    igmp-snooping {
    vlan all;
    }
    rstp;
    lldp {
    interface all;
    }
    lldp-med {
    interface all;
    }
    }
    ethernet-switching-options {
    voip;
    storm-control {
    interface all;
    }
    }
    vlans {
    V1-DATA {
    vlan-id 1;
    }
    V10-GUEST {
    description GuestSSID;
    vlan-id 10;
    }



  • 3.  RE: VLAN Switching Help
    Best Answer

    Posted 10-17-2012 15:06

    Actually, I was able to figure it out. 

     

    Feel free to delete this thread!