20 lines
381 B
Plaintext
20 lines
381 B
Plaintext
|
{
|
||
|
"device": "{{ pc }}",
|
||
|
"runner": {
|
||
|
"name": "lacp",
|
||
|
"active": true,
|
||
|
"min_ports": 2,
|
||
|
"tx_hash": ["eth", "ipv4", "ipv6"]
|
||
|
},
|
||
|
"link_watch": {
|
||
|
"name": "ethtool"
|
||
|
},
|
||
|
"ports": {
|
||
|
{% for member in minigraph_portchannel_interfaces[pc] %}
|
||
|
"{{member}}": {}{% if not loop.last %},{% endif %}
|
||
|
|
||
|
{% endfor %}
|
||
|
}
|
||
|
}
|
||
|
|