- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- HPE Aruba Networking & ProVision-based
- >
- QOS Beginner question - Procurve 5412zl
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
Forums
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
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
03-31-2014 01:32 AM
03-31-2014 01:32 AM
QOS Beginner question - Procurve 5412zl
I am looking for some help with applying QOS to a Procurve 5412zl. QOS is not something we have used before. There is an application that communicates with TCP 5003 that is suffering some performance issues (client / server application with the app server located in a datacentre)
I would like to see if we can improve performance through QOS. My question is whether QOS will even have an effect if there is always spare bandwith over the office<->Datacenter circuit (and there almost always is, even when the application in question is performing poorly)
If applying QOS might improve performance then this is something I would like to try. I have seen some examples of QOS being applied to vlans however nothing specific to data on a particular port. IS there a good reference on this? Do I also need to specify that everything else should run at priority 2 after setting tcp 5003 as priority 1.
All advice welcomed,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2014 03:29 PM
04-06-2014 03:29 PM
Re: QOS Beginner question - Procurve 5412zl
First of all (s)low performance of client/server applications can have many causes. Qos will only help if there is a congested network. Other causes can lie in the application itself, latency of long distances round trip delays or the speed and resources of the backend applications and hardware (cpu, memory storage).
Best reference is to read the manual, also entering 'help' after the qos commands in config mode will give you lots of info.
To mark the tcp 5003 traffic to the right priority queue just enter:
5406zl (config)#qos tcp-port ipv4 5003 priority 6
you can also remark the traffic to a DSCP. In that case WAN Qos can handle the traffic in the correct classes.
syntax:
[no] qos {udp-port | tcp-port} [ipv4 | ipv6 | ip-all] {<PORT> | range <PORT> <PORT>} { dscp <Codepoint> | priority <Priority> }
The switch has 8 priority queues (from low to high) 1 2 0 3 4 5 6 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2014 01:13 AM
04-09-2014 01:13 AM
Re: QOS Beginner question - Procurve 5412zl
Thanks for that, very helpful.