Skip to content

Latest commit

 

History

History
195 lines (163 loc) · 7.29 KB

cisco.nxos.nxos_vtp_version_module.rst

File metadata and controls

195 lines (163 loc) · 7.29 KB

cisco.nxos.nxos_vtp_version

Manages VTP version configuration.

Version added: 1.0.0

  • Manages VTP version configuration.
Parameter Choices/Defaults Comments
version
string / required
    Choices:
  • 1
  • 2
  • 3
VTP version number.

Note

# ENSURE VTP VERSION IS 2
- cisco.nxos.nxos_vtp_version:
    version: 2

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
changed
boolean
always
check to see if a change was made on the device

Sample:
True
end_state
dictionary
always
k/v pairs of vtp after module execution

Sample:
{'domain': 'testing', 'version': '2', 'vtp_password': 'password'}
existing
dictionary
always
k/v pairs of existing vtp

Sample:
{'domain': 'testing', 'version': '1', 'vtp_password': 'password'}
proposed
dictionary
always
k/v pairs of parameters passed into module

Sample:
{'version': '2'}
updates
list
always
command sent to the device

Sample:
['vtp version 2']


Authors

  • Gabriele Gerbino (@GGabriele)