Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CoPP] Add always_enabled field to copp_cfg.j2 and yang model #21

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions files/image_config/copp/copp_cfg.j2
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"trap_priority":"4",
"queue": "4"
},
"queue4_group2": {
"queue4_group2": {
"trap_action":"copy",
"trap_priority":"4",
"queue": "4",
Expand Down Expand Up @@ -69,11 +69,13 @@
},
"lacp": {
"trap_ids": "lacp",
"trap_group": "queue4_group1"
"trap_group": "queue4_group1",
"always_enabled": "true"
},
"arp": {
"trap_ids": "arp_req,arp_resp,neigh_discovery",
"trap_group": "queue4_group2"
"trap_group": "queue4_group2",
"always_enabled": "true"
},
"lldp": {
"trap_ids": "lldp",
Expand All @@ -85,11 +87,13 @@
},
"udld": {
"trap_ids": "udld",
"trap_group": "queue4_group3"
"trap_group": "queue4_group3",
"always_enabled": "true"
},
"ip2me": {
"trap_ids": "ip2me",
"trap_group": "queue1_group1"
"trap_group": "queue1_group1",
"always_enabled": "true"
},
"nat": {
"trap_ids": "src_nat_miss,dest_nat_miss",
Expand Down
2 changes: 1 addition & 1 deletion platform/vs/docker-sonic-vs/init_cfg.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"buffer_model": "traditional"
}
},
{% set features = ["swss", "bgp", "teamd", "nat", "database"] %}
{% set features = ["swss", "bgp", "teamd", "nat", "database", "lldp", "dhcp_relay", "macsec"] %}
"FEATURE": {
{% for feature in features %}
"{{ feature }}": {
Expand Down
17 changes: 11 additions & 6 deletions src/sonic-yang-models/yang-models/sonic-copp.yang
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ module sonic-copp {
type stypes:copp_packet_action;
description "Trap action";
}

leaf meter_type {
mandatory true;
type stypes:meter_type;
description "Policer meter type";
}

leaf mode {
mandatory true;
type enumeration {
Expand All @@ -59,7 +59,7 @@ module sonic-copp {
}
description "Policer mode";
}

leaf color {
type enumeration {
enum blind;
Expand All @@ -74,7 +74,7 @@ module sonic-copp {
default 0;
description
"Committed information rate for the dual-rate token
bucket policer. This value represents the rate at which
bucket policer. This value represents the rate at which
tokens are added to the primary bucket.";
}

Expand Down Expand Up @@ -118,13 +118,13 @@ module sonic-copp {
"Excess burst size for the dual-rate token bucket policer.
This value represents the depth of the secondary bucket.";
}

leaf green_action {
type stypes:copp_packet_action;
default "forward";
description "Green action";
}

leaf yellow_action {
when "((current()/../mode = 'sr_tcm') or (current()/../mode = 'tr_tcm'))";
type stypes:copp_packet_action;
Expand Down Expand Up @@ -163,6 +163,11 @@ module sonic-copp {
}
description "reference to CoPP group";
}

leaf always_enabled {
type boolean;
description "field that indicates whether the trap should be always installed";
}
}
/* end of list COPP_TRAP_LIST */
}
Expand Down