Fixed docstring
This commit is contained in:
parent
8555519945
commit
30313f8979
1 changed files with 9 additions and 9 deletions
|
@ -20,38 +20,38 @@ DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: nxos_ip_interface
|
module: nxos_ip_interface
|
||||||
version_added: "2.1"
|
version_added: "2.1"
|
||||||
short_description: Manages L3 attributes for IPv4 and IPv6 interfaces
|
short_description: Manages L3 attributes for IPv4 and IPv6 interfaces.
|
||||||
description:
|
description:
|
||||||
- Manages Layer 3 attributes for IPv4 and IPv6 interfaces
|
- Manages Layer 3 attributes for IPv4 and IPv6 interfaces.
|
||||||
extends_documentation_fragment: nxos
|
extends_documentation_fragment: nxos
|
||||||
author:
|
author:
|
||||||
- Jason Edelman (@jedelman8)
|
- Jason Edelman (@jedelman8)
|
||||||
- Gabriele Gerbino (@GGabriele)
|
- Gabriele Gerbino (@GGabriele)
|
||||||
notes:
|
notes:
|
||||||
- Interface must already be a L3 port when using this module
|
- Interface must already be a L3 port when using this module.
|
||||||
- Logical interfaces (po, loop, svi) must be created first
|
- Logical interfaces (po, loop, svi) must be created first.
|
||||||
- I(mask) must be inserted in decimal format (i.e. 24) for
|
- C(mask) must be inserted in decimal format (i.e. 24) for
|
||||||
both IPv6 and IPv4.
|
both IPv6 and IPv4.
|
||||||
- A single interface can have multiple IPv6 configured.
|
- A single interface can have multiple IPv6 configured.
|
||||||
|
|
||||||
options:
|
options:
|
||||||
interface:
|
interface:
|
||||||
description:
|
description:
|
||||||
- Full name of interface, i.e. Ethernet1/1, vlan10
|
- Full name of interface, i.e. Ethernet1/1, vlan10.
|
||||||
required: true
|
required: true
|
||||||
addr:
|
addr:
|
||||||
description:
|
description:
|
||||||
- IPv4 or IPv6 Address
|
- IPv4 or IPv6 Address.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
mask:
|
mask:
|
||||||
description:
|
description:
|
||||||
- Subnet mask for IPv4 or IPv6 Address in decimal format
|
- Subnet mask for IPv4 or IPv6 Address in decimal format.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Specify desired state of the resource
|
- Specify desired state of the resource.
|
||||||
required: false
|
required: false
|
||||||
default: present
|
default: present
|
||||||
choices: ['present','absent']
|
choices: ['present','absent']
|
||||||
|
|
Loading…
Reference in a new issue