Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Enterasys Vlan Config

    Hello All

    Is there anyone out there that can help me with the configuration of vlans on a matrix 48 port switch.

    TIA
    AJ

  • #2
    i've just spent an entire day (and several total previous to today) troubleshooting vlan issues on enterasys securestack switches so if they are similar (sorry have no exp. with matrix line) then I can help:

    on the switch cli enter command:

    set create vlan X
    set vlan name X "VLAN_name"

    (X=the vlan id)
    this will create vlan X, and name it "VLAN_name"


    then assign the ports you want in each vlan. enterasys handles ingress and egress separately. assign ingress vlan using:

    set port vlan [port-string] X

    port string is the port number. for me it was ge.1.x. you can specify multiple ports using * or - (ports 1-48 would be ge.1.* or ge.1.1-48)


    assign egress vlan:

    set vlan egress X ge.1.x untagged

    (note the syntax is reversed between the 'set port vlan' and 'set vlan egress' commands.)


    assign an ip address to the vlan interface:

    router
    enable
    config
    interface vlan X
    ip address a.b.c.d m.a.s.k
    no shutdown
    exit
    exit
    exit
    exit


    example -- for shoretel phones and PCs on ports 1-40 shoretel switches/server on 41-44, and vlan 1 traffic on ports 45-48
    set vlan name 1 "Management"
    set create vlan 10
    set vlan name 10 "Voice"

    set port vlan ge.1.41-44 10

    clear vlan egress 1 ge.1.41-44
    set vlan egress 10 ge1.1-40 tagged
    set vlan egress 10 ge.1.41-44 untagged

    router
    enable
    config
    interface vlan 1
    no shutdown
    ip address 192.168.1.1 255.255.255.0
    exit
    interface vlan 10
    no shutdown
    ip address 192.168.10.1 255.255.255.0
    exit
    exit
    exit
    exit



    note: i've found that having your internet gateway on the same vlan/subnet as your hosts can cause web browsing problems. YMMV. And I'll leave it up to you to decide whether to use vlan 1 for hosts.

    Comment


    • #3
      Re

      Thanks for the help, also how did you set up QOS for the VLAN

      AJ

      Comment


      • #4
        Re

        I got the vlans setup but i could not get the phones to pull an ip address from the dhcp server. Any ideas

        Comment


        • #5
          I had the same issue with my Extreme switches... ended up to be that I forgot to make the switch port that had my dhcp server on it to be a trunk port so it would see all vlans

          Comment


          • #6
            how did you set it as a trunk port

            Comment


            • #7
              on extreme, it i s just a flag... don't know about enterasys

              Comment

              Working...
              X