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

[Document] Supply the missing ingress/egress port profile list tables in document #2064

Merged
Merged
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
39 changes: 39 additions & 0 deletions doc/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Table of Contents
* [Buffer pool](#buffer-pool)
* [Buffer profile](#buffer-profile)
* [Buffer queue](#buffer-queue)
* [Buffer port ingress profile list](#buffer-port-ingress-profile-list)
* [Buffer port egress profile list](#buffer-port-egress-profile-list)
* [Cable length](#cable-length)
* [COPP_TABLE](#copp_table)
* [CRM](#crm)
Expand Down Expand Up @@ -544,6 +546,43 @@ This kind of profiles will be handled by buffer manager and won't be applied to

```

### Buffer port ingress profile list

```
{
"BUFFER_PORT_INGRESS_PROFILE_LIST": {
"Ethernet50": {
"profile_list": "ingress_lossy_profile,ingress_lossless_profile"
},
"Ethernet52": {
"profile_list": "ingress_lossy_profile,ingress_lossless_profile"
},
"Ethernet56": {
"profile_list": "ingress_lossy_profile,ingress_lossless_profile"
}
}
}

```

### Buffer port egress profile list

```
{
"BUFFER_PORT_EGRESS_PROFILE_LIST": {
"Ethernet50": {
"profile_list": "egress_lossy_profile,egress_lossless_profile"
},
"Ethernet52": {
"profile_list": "egress_lossy_profile,egress_lossless_profile"
},
"Ethernet56": {
"profile_list": "egress_lossy_profile,egress_lossless_profile"
}
}
}

```

### Cable length

Expand Down