Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.
The FDP team is no longer accepting new bugs in Bugzilla. Please report your issues under FDP project in Jira. Thanks.

Bug 2012162

Summary: [OVN] Improve CoPP system test coverage.
Product: Red Hat Enterprise Linux Fast Datapath Reporter: Dumitru Ceara <dceara>
Component: OVNAssignee: lorenzo bianconi <lorenzo.bianconi>
Status: CLOSED CURRENTRELEASE QA Contact: ying xu <yinxu>
Severity: medium Docs Contact:
Priority: medium    
Version: FDP 21.HCC: ctrautma, jiji, jishi, lorenzo.bianconi
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: ovn-2021-21.09.0-17.el8fdp Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2023-03-13 07:22:14 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On: 2013729    
Bug Blocks:    

Description Dumitru Ceara 2021-10-08 13:08:53 UTC
Description of problem:

Currently the CoPP (control plane protection) OVN system test only covers a few of the possible actions that can generate controller actions and can be metered:
- reject
- arp resolve

We should test the other copp protocols too:
enum copp_proto {
    COPP_PROTO_FIRST,
    COPP_ARP = COPP_PROTO_FIRST,
    COPP_ARP_RESOLVE,
    COPP_DHCPV4_OPTS,
    COPP_DHCPV6_OPTS,
    COPP_DNS,
    COPP_EVENT_ELB,
    COPP_ICMP4_ERR,
    COPP_ICMP6_ERR,
    COPP_IGMP,
    COPP_ND_NA,
    COPP_ND_NS,
    COPP_ND_NS_RESOLVE,
    COPP_ND_RA_OPTS,
    COPP_TCP_RESET,
    COPP_BFD,
    COPP_REJECT,
    COPP_PROTO_MAX,
    COPP_PROTO_INVALID = COPP_PROTO_MAX,
};