Skip to content
Open
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
37 changes: 37 additions & 0 deletions feature/lldp/otg_tests/core_lldp_tlv_population_test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,41 @@ Determine LLDP advertisement and reception operates correctly.
configuration of lldp/interfaces/interface/config/enabled (TRUE or
FALSE) on any interface.

## Canonical OC

```json
{
"openconfig-interfaces:interfaces": {
"interface": [
{
"name": "port1",
"config": {
"name": "port1",
"enabled": true
}
}
]
},
"openconfig-lldp:lldp": {
"config": {
"enabled": true,
"system-description": "DUT"
},
"interfaces": {
"interface": [
{
"name": "port1",
"config": {
"name": "port1",
"enabled": true
}
}
]
}
}
}
```

## OpenConfig Path and RPC Coverage

The below yaml defines the OC paths intended to be covered by this test. OC paths used for test setup are not listed here.
Expand All @@ -33,11 +68,13 @@ paths:
/lldp/interfaces/interface/neighbors/neighbor/state/chassis-id:
/lldp/interfaces/interface/neighbors/neighbor/state/chassis-id-type:
/lldp/interfaces/interface/neighbors/neighbor/state/port-id:
/lldp/interfaces/interface/neighbors/neighbor/state/port-id-type:
/lldp/interfaces/interface/neighbors/neighbor/state/system-name:
/lldp/interfaces/interface/neighbors/neighbor/state/system-description:
/lldp/interfaces/interface/state/name:
/lldp/state/chassis-id:
/lldp/state/chassis-id-type:
/lldp/state/system-description:
/lldp/state/system-name:

rpcs:
Expand Down
Loading