- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- HPE Aruba Networking & ProVision-based
- >
- Traffic priority between two trunks - how to confi...
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
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
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
тАО06-02-2018 03:37 PM
тАО06-02-2018 03:37 PM
Traffic priority between two trunks - how to configure this on hp 2920?
Hello all :)
i have here tow trunks. On one side an ZFS-Raidstorage, on the otherside an vdr-server with timeshift. I would like to prefer the traffice from the vdrserver to the zfsraid. How can i configure/prefer this traffic on the switch? The vdrserver have IPV4 and IPV6.
Thanks a lot
Best Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-03-2018 04:46 PM
тАО06-03-2018 04:46 PM
Re: Traffic priority between two trunks - how to configure this on hp 2920?
You only need to prefer traffic if you are getting congestion.
If your storage network is experiencing network congestion, you should provision more bandwidth or a better switch.
So the real answer is to provision enough bandwidth so congestion doesn't occur.
The literal answer though, is: QoS.
If the requirement is for all traffic between the two devices, you could simply use a source-port classifier:
(So I'm assuming you have a 4-port LAG to each device, eg, Trk1=C2,C3,D2,D3; Trk2=C4,C5,D4,D5)
interface C2-C5,D2-D5 qos priority 3 [Layer2 QoS}
interface C2-C4,D2-D5 qos dscp 000011 [Layer3 QoS]
Otherwise, if there is some traffic from those devices that needs priority and some that doesn't, you need to classify it, eg:
class ipv4 PriorityAppsClass
10 match ip 10.100.10.40 10.100.20.30
20 match vlan 210
policy qos PriorityAppsPolicy
class ipv4 PriorityAppsClass action ip-precedence 3 action dscp 000011
default-class action ip-precedence 0 action dscp 000000
interface Trk1,Trk2 service-policy PriorityAppsPolicy in
*** This isn't working config, this is just me typing stuff in - you will have to refer to the Advanced Traffic Management Guide for your switch model for correct syntax
*** Frequently, I see people who do this stuff go, "oh, 7 is the highest priority, I'll use that". Don't be retarded like them. 7 is not for you to use.
7 is for internal switch processes to use (eg routing protocols)
6 is normally (ie, as per the RFC) similarly reserved, but in HP-land, 6 is (mis-)used for Voice.
5 is normally voice - if you have a mixed-vendor network, you should definitely use 5 for voice. That will involve re-mapping anything generated by HP (eg Voice VLAN) (qos dscp-map 000101 priority 5). So this is low-bandwidth, low latency traffic
4 is for high-bandwidth, low-latency traffic - video.
3,2,1,0 are for your apps. By default, usually 70% of the switch buffer memory is allocated for 0 and 3, because it is expected that you will have most of your bulk data going through as default priority (0) or if prioritised, as 3. Your storage traffic should definitely be 3.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-06-2018 11:07 AM
тАО06-06-2018 11:07 AM
Re: Traffic priority between two trunks - how to configure this on hp 2920?
Thank you very much for your infos. I do this and test the features.
Best Regards :)