- Docs »
- community.network.pn_vtep – CLI command to create/delete vtep
-
You are reading the latest community version of the Ansible documentation. Red Hat subscribers, select 2.9 in the version selection to the left for the most recent Red Hat release.
community.network.pn_vtep – CLI command to create/delete vtep
Note
This plugin is part of the community.network collection (version 2.1.1).
To install it use: ansible-galaxy collection install community.network
.
To use it in a playbook, specify: community.network.pn_vtep
.
Parameter |
Choices/Defaults |
Comments |
pn_cliswitch
string
|
|
Target switch to run the CLI on.
|
pn_ip
string
|
|
Primary IP address.
|
pn_location
string
|
|
switch name.
|
pn_name
string
|
|
vtep name.
|
pn_switch_in_cluster
boolean
|
|
Tells whether switch in cluster or not.
|
pn_virtual_ip
string
|
|
Virtual/Secondary IP address.
|
pn_vrouter_name
string
|
|
name of the vrouter service.
|
state
string
|
Choices:
present ←
- absent
|
vtep configuration command.
|
- name: Create vtep
community.network.pn_vtep:
pn_cliswitch: 'sw01'
pn_name: 'foo'
pn_vrouter_name: 'foo-vrouter'
pn_ip: '22.22.22.2'
pn_location: 'sw01'
pn_virtual_ip: "22.22.22.1"
- name: Delete vtep
community.network.pn_vtep:
pn_cliswitch: 'sw01'
state: 'absent'
pn_name: 'foo'
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.
|
stderr
list
/ elements=string
|
on error |
set of error responses from the vtep command.
|
stdout
list
/ elements=string
|
always |
set of responses from the vtep command.
|