Skip to content
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
4 changes: 2 additions & 2 deletions src/sonic-yang-models/doc/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ and migration plan
],
"BIND_POINTS": [
"PORT",
"LAG"
"PORTCHANNEL"
]
}
},
Expand Down Expand Up @@ -1855,7 +1855,7 @@ SFLOW

| Field | Description | Mandatory | Default | Reference |
|------------------|-----------------------------------------------------------------------------------------|-------------|-----------|-------------------------------------------|
| admin_state | Global sflow admin state | | down |
| admin_state | Global sflow admin state | | down |
| sample_direction | Global sflow sample direction | | rx | |
| polling_interval | The interval within which sFlow data is collected and sent to the configured collectors | | 20 | |
| agent_id | Interface name | | | PORT:name,PORTCHANNEL:name,MGMT_PORT:name, VLAN:name |
Expand Down
2 changes: 1 addition & 1 deletion src/sonic-yang-models/tests/files/sample_config_db.json
Original file line number Diff line number Diff line change
Expand Up @@ -2379,7 +2379,7 @@
],
"BIND_POINTS": [
"PORT",
"LAG"
"PORTCHANNEL"
]
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,8 @@
"PACKET_ACTION"
],
"BIND_POINTS": [
"PORT"
"PORT",
"PORTCHANNEL"
]
}
]
Expand Down
2 changes: 1 addition & 1 deletion src/sonic-yang-models/yang-templates/sonic-acl.yang.j2
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ module sonic-acl {
leaf-list BIND_POINTS {
type enumeration {
enum PORT;
enum LAG;
enum PORTCHANNEL;
}
min-elements 1;
}
Expand Down