- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- Comware Based
- >
- ACL/QoS A5500 EI
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
04-11-2013 01:05 PM
04-11-2013 01:05 PM
ACL/QoS A5500 EI
Hello all ,
Is it possible to apply QoS to an ACl on a H3C A5500 EI switch with Comware Software version 5.20 release 2202 ?
The "packet filter" command is not available. Is it possible to apply QoS to an ACL with another command line
configuration within version 2202 ? Or is an upgrade to a more current software version the only resolution to this
issue ?
config example :
acl number 3000
rule 0 permit ip source 10.44. 111.120 0.0.0.0. destination 130.44.X.X 0.0.0.0
rule 5 deny ip source 10.44.111.120 0.0.0.0 destination any
traffic classifier test1
if match acl 3000
traffic behavior test2
filter permit
qos policy policy_test3
classifier test1 behavior test2
interface GigabitEthernet 1/0/32
qos apply policy policy_test3 inbound
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2013 06:41 AM
04-12-2013 06:41 AM
Re: ACL/QoS A5500 EI
Hi,
That would be possible, but it requires a bit of reverse thinking.
Since you need 2 actions in the qos policy (filter permit and deny), you will need 2 classifiers:
1 for the traffic you want to permit
1 for the traffic you want to deny
So you must create 2 ACLs. Each of these must have PERMIT rules, so they will SELECT the traffic of the ACL, then the ACL can be linked to the classifier1 and 2.
You would create 2 behaviors:
1 for the behavior filert permit
1 for the behavior filter deny
These can be combined in the qos policy:
qos policy x
classifier x behavior deny-behaviorname
classifier y behavior permit-behaviorname
So the answer is yes, it can be done, my preferred answer would be to update the firmware and just use the packet filter command, which is way more straight-forward than this qos workaround ...
Hope this helps ...