HPE Aruba Networking & ProVision-based
1820072 Members
2572 Online
109608 Solutions
New Discussion

I new to network and i need help configuring vlan on HP procurve 5406z

 
pro curve
New Member

I new to network and i need help configuring vlan on HP procurve 5406z

Does anyone out there have an step by step instruction on how to configure vlan on HP procurve? thank you .

 

P.S. This thread has been moved from Switches, Hubs, Modems (Legacy ITRC forum) to ProCurve / ProVision-Based. -HP Forum Moderator

4 REPLIES 4
Natasha Samoylenko
Trusted Contributor

Re: I new to network and i need help configuring vlan on HP procurve 5406z

You can read Advanced Traffic Management Guide for the ProCurve Series 3500, 3500yl, 5400zl, 6200yl, 6600, and 8200zl Switches (http://cdn.procurve.com/training/Manuals/3500-5400-6200-6600-8200-ATG-Mar10-2-VLAN.pdf).

By default all ports on switch is in VLAN 1.
If you need to place some hosts in another VLAN, then you need to assign ports to which they connected to that VLAN. This membership called "untagged".
For example, if you want to place port a5 to VLAN 10:
(config)# vlan 10 untagged a5

All hosts in the same VLAN will have IP adresses from the same subnet.

Did you need also routing between VLANs?
5406zl is layer 3 switch, so maybe you need.

It would be better if you try to explain what you want to achieve.
Then I can try to help you with step by step instructions.
pro curve
New Member

Re: I new to network and i need help configuring vlan on HP procurve 5406z

I am trying to create and configure 3 vlan's one for VOIP one for all the printers and another for the backend servers. I created 3 scope of 3 different subnet on my dhcp so each vlan will be on their subnet and i need to have these vlan route in between each other. so VLAN7 is voice subnet is 10.0.1.1
vlan6 is printers 10.0.2.1 and the backend vlan subnet is 10.0.3.1/ and i want to assign the voice as priority. thank you so much for all your help.
Natasha Samoylenko
Trusted Contributor

Re: I new to network and i need help configuring vlan on HP procurve 5406z

You have only one switch?
All this subnets connected to 5406?
Computers connected to switch itself or through ip phones?
DHCP server resides in backend servers VLAN?
You need to prioritize voice VLAN only on this switch or you have other network devices which will send this traffic?
Natasha Samoylenko
Trusted Contributor

Re: I new to network and i need help configuring vlan on HP procurve 5406z

If you have one 5406 switch, all subnets are connected to this switch and DHCP server is in backend servers VLAN, then you can configure this (topology in attachement)

Also:
VLAN 100 is backend servers VLAN,
VLAN 200 is VLAN for hosts (subnet 10.0.200.0/24). I don'n know if you need this VLAN, so if you don't then you need to delete part of configuration for that VLAN.

Switch configuration:

5406> enable
5406# configure
5406(config)# "all next commands must be configured in this mode (global configuration mode)"

# Enable ip routing
ip routing

# create vlan 6
vlan 6
# assign name "printers" to vlan
name printers
# assign IP address to vlan
ip address 10.0.2.1/24
# add ports d1 and d5 to VLAN 6
untagged d1,d5
#tell the switch there to relay DHCP packets from hosts
# (this must be a DHCP server IP address)
ip helper-address 10.0.3.10

vlan 7
name voice
voice
ip address 10.0.1.1/24
tagged b1,c8
# this command gives priority to voice VLAN
qos priority 7
ip helper-address 10.0.3.10

vlan 100
name servers
ip address 10.0.3.1/24
untagged a5-a10

vlan 200
name host
ip address 10.0.200.1/24
untagged b1
ip helper-address 10.0.3.10

To save your configuration:
5406# wr mem

By default 5406 use 8 queues. But I think for you will be better to use 4:
5406(config)# qos queue-config 4-queues
After this command you need to reload switch:
5406(config)# wr mem
5406(config)# reload

I hope this help you. But anyway it would be better for you to read manual for this switch to know how to configure this features.