You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documentation states "default state" is "no switchport". I believe the documenetation intends to state this is the default state of the interface, but this is not the default behavior of the template.
|``switchport``| boolean: true,false\*| Configures an interface in L2 mode | os10 |
However, the "no switchport" command is not applied if the "switchport" key is not present in the os10_interface dict....unless "portmode" is set (which is a bit counterintuitive).
Taking this section of the template to an online jinja parser:
Documentation states "default state" is "no switchport". I believe the documenetation intends to state this is the default state of the interface, but this is not the default behavior of the template.
dellemc.os10/roles/os10_interface/README.md
Line 29 in 9946fc3
However, the "no switchport" command is not applied if the "switchport" key is not present in the
os10_interface
dict....unless "portmode" is set (which is a bit counterintuitive).Taking this section of the template to an online jinja parser:
{ "intf_vars": { "portmode" : "" }}
renders "no switchport"{ "intf_vars": {} }
renders nothing.The text was updated successfully, but these errors were encountered: