- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- HPE Aruba Networking & ProVision-based
- >
- I new to network and i need help configuring vlan ...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2010 11:44 AM - last edited on 07-03-2014 07:46 PM by Lisa198503
07-08-2010 11:44 AM - last edited on 07-03-2014 07:46 PM by Lisa198503
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2010 03:39 AM
07-13-2010 03:39 AM
Re: I new to network and i need help configuring vlan on HP procurve 5406z
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2010 06:20 AM
07-13-2010 06:20 AM
Re: I new to network and i need help configuring vlan on HP procurve 5406z
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2010 06:59 AM
07-13-2010 06:59 AM
Re: I new to network and i need help configuring vlan on HP procurve 5406z
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2010 12:41 PM
07-13-2010 12:41 PM
Re: I new to network and i need help configuring vlan on HP procurve 5406z
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.