mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
meraki_vlan - Document DHCP responses (#54142)
* Added documentation for new DHCP responses. * Added the actual DHCP options documentation
This commit is contained in:
parent
0f199ef58a
commit
0b37828377
1 changed files with 51 additions and 2 deletions
|
@ -194,7 +194,7 @@ response:
|
||||||
type: int
|
type: int
|
||||||
sample: 2
|
sample: 2
|
||||||
name:
|
name:
|
||||||
description: Descriptive name of VLAN
|
description: Descriptive name of VLAN.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
sample: TestVLAN
|
sample: TestVLAN
|
||||||
|
@ -207,7 +207,56 @@ response:
|
||||||
description: CIDR notation IP subnet of VLAN.
|
description: CIDR notation IP subnet of VLAN.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
sample: 192.0.1.0/24
|
sample: "192.0.1.0/24"
|
||||||
|
dhcpHandling:
|
||||||
|
description: Status of DHCP server on VLAN.
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
|
sample: Run a DHCP server
|
||||||
|
dhcpLeaseTime:
|
||||||
|
description: DHCP lease time when server is active.
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
|
sample: 1 day
|
||||||
|
dhcpBootOptionsEnabled:
|
||||||
|
description: Whether DHCP boot options are enabled.
|
||||||
|
returned: success
|
||||||
|
type: bool
|
||||||
|
sample: no
|
||||||
|
dhcpBootNextServer:
|
||||||
|
description: DHCP boot option to direct boot clients to the server to load the boot file from.
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
|
sample: 192.0.1.2
|
||||||
|
dhcpBootFilename:
|
||||||
|
description: Filename for boot file.
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
|
sample: boot.txt
|
||||||
|
dhcpOptions:
|
||||||
|
description: DHCP options.
|
||||||
|
returned: success
|
||||||
|
type: complex
|
||||||
|
contains:
|
||||||
|
code:
|
||||||
|
description:
|
||||||
|
- Code for DHCP option.
|
||||||
|
- Integer between 2 and 254.
|
||||||
|
returned: success
|
||||||
|
type: int
|
||||||
|
sample: 43
|
||||||
|
type:
|
||||||
|
description:
|
||||||
|
- Type for DHCP option.
|
||||||
|
- Choices are C(text), C(ip), C(hex), C(integer).
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
|
sample: text
|
||||||
|
value:
|
||||||
|
description: Value for the DHCP option.
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
|
sample: 192.0.1.2
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
Loading…
Add table
Reference in a new issue