- Docs »
- community.network.pn_vlag – CLI command to create/delete/modify vlag.
-
You are reading an older version of the Ansible documentation. Use the version selection to the left if you want the latest stable released version.
community.network.pn_vlag – CLI command to create/delete/modify vlag.
Note
This plugin is part of the community.network collection (version 1.3.2).
To install it use: ansible-galaxy collection install community.network
.
To use it in a playbook, specify: community.network.pn_vlag
.
- Removed in
version 2.0.0
- Why
Doesn’t support latest Pluribus Networks netvisor
- Alternative
Latest modules will be pushed in Ansible future versions.
Execute vlag-create/vlag-delete/vlag-modify command.
A virtual link aggregation group (VLAG) allows links that are physically connected to two different Pluribus Networks devices to appear as a single trunk to a third device. The third device can be a switch, server, or any Ethernet device. A VLAG can provide Layer 2 multipathing, which allows you to create redundancy by increasing bandwidth, enabling multiple parallel paths between nodes and loadbalancing traffic where alternative paths exist.
Parameter |
Choices/Defaults |
Comments |
pn_clipassword
string
|
|
Provide login password if user is not root.
|
pn_cliswitch
string
|
Default:
"local"
|
Target switch(es) to run this command on.
|
pn_cliusername
string
|
|
Provide login username if user is not root.
|
pn_failover_action
string
|
|
Specify the failover action as move or ignore.
|
pn_lacp_fallback
string
|
Choices:
- bundle
- individual
|
Specify the LACP fallback mode as bundles or individual.
|
pn_lacp_fallback_timeout
string
|
|
Specify the LACP fallback timeout in seconds. The range is between 30 and 60 seconds with a default value of 50 seconds.
|
pn_lacp_mode
string
|
Choices:
- off
- passive
- active
|
Specify the LACP mode.
|
pn_lacp_timeout
string
|
|
Specify the LACP timeout as slow(30 seconds) or fast(4 seconds).
|
pn_mode
string
|
Choices:
- active-active
- active-standby
|
Specify the mode for the VLAG. Active-standby indicates one side is active and the other side is in standby mode. Active-active indicates that both sides of the vlag are up by default.
|
pn_name
string
/ required
|
|
The pn_name takes a valid name for vlag configuration.
|
pn_peer_port
string
|
|
Specify the peer VLAG port.
Required for vlag-create.
|
pn_peer_switch
string
|
|
Specify the fabric-name of the peer switch.
|
pn_port
string
|
|
Specify the local VLAG port.
Required for vlag-create.
|
state
string
/ required
|
Choices:
- present
- absent
- update
|
State the action to perform. Use 'present' to create vlag, 'absent' to delete vlag and 'update' to modify vlag.
|
- name: Create a VLAG
community.network.pn_vlag:
state: 'present'
pn_name: spine-to-leaf
pn_port: 'spine01-to-leaf'
pn_peer_port: 'spine02-to-leaf'
pn_peer_switch: spine02
pn_mode: 'active-active'
- name: Delete VLAGs
community.network.pn_vlag:
state: 'absent'
pn_name: spine-to-leaf
Common return values are documented here, the following are the fields unique to this module:
Key |
Returned |
Description |
changed
boolean
|
always |
Indicates whether the CLI caused changes on the target.
|
command
string
|
always |
The CLI command run on the target node(s).
|
stderr
list
/ elements=string
|
on error |
The set of error responses from the vlag command.
|
stdout
list
/ elements=string
|
always |
The set of responses from the vlag command.
|