diff options
Diffstat (limited to 'plugins/modules/vyos_ping.py')
| -rw-r--r-- | plugins/modules/vyos_ping.py | 48 | 
1 files changed, 24 insertions, 24 deletions
| diff --git a/plugins/modules/vyos_ping.py b/plugins/modules/vyos_ping.py index 82710490..3d5a9036 100644 --- a/plugins/modules/vyos_ping.py +++ b/plugins/modules/vyos_ping.py @@ -29,56 +29,56 @@ ANSIBLE_METADATA = {      "supported_by": "community",  } -DOCUMENTATION = """ ---- -module: vyos_ping +DOCUMENTATION = """module: vyos_ping  short_description: Tests reachability using ping from VyOS network devices  description: -  - Tests reachability using ping from a VyOS device to a remote destination. -  - Tested against VyOS 1.1.8 (helium) -  - For a general purpose network module, see the M(net_ping) module. -  - For Windows targets, use the M(win_ping) module instead. -  - For targets running Python, use the M(ping) module instead. +- Tests reachability using ping from a VyOS device to a remote destination. +- Tested against VyOS 1.1.8 (helium) +- For a general purpose network module, see the M(net_ping) module. +- For Windows targets, use the M(win_ping) module instead. +- For targets running Python, use the M(ping) module instead.  author: -  - Nilashish Chakraborty (@NilashishC) -version_added: '2.8' +- Nilashish Chakraborty (@NilashishC)  options:    dest:      description: -      - The IP Address or hostname (resolvable by the device) of the remote node. +    - The IP Address or hostname (resolvable by the device) of the remote node.      required: true    count:      description: -      - Number of packets to send to check reachability. +    - Number of packets to send to check reachability.      type: int      default: 5    source:      description: -      - The source interface or IP Address to use while sending the ping packet(s). +    - The source interface or IP Address to use while sending the ping packet(s).    ttl:      description: -      - The time-to-live value for the ICMP packet(s). +    - The time-to-live value for the ICMP packet(s).      type: int    size:      description: -      - Determines the size (in bytes) of the ping packet(s). +    - Determines the size (in bytes) of the ping packet(s).      type: int    interval:      description: -      - Determines the interval (in seconds) between consecutive pings. +    - Determines the interval (in seconds) between consecutive pings.      type: int    state:      description: -      - Determines if the expected result is success or fail. -    choices: [ absent, present ] +    - Determines if the expected result is success or fail. +    choices: +    - absent +    - present      default: present  notes: -  - Tested against VyOS 1.1.8 (helium). -  - For a general purpose network module, see the M(net_ping) module. -  - For Windows targets, use the M(win_ping) module instead. -  - For targets running Python, use the M(ping) module instead. -  - This module works with connection C(network_cli). See L(the VyOS OS Platform Options,../network/user_guide/platform_vyos.html). -extends_documentation_fragment: vyos +- Tested against VyOS 1.1.8 (helium). +- For a general purpose network module, see the M(net_ping) module. +- For Windows targets, use the M(win_ping) module instead. +- For targets running Python, use the M(ping) module instead. +- This module works with connection C(network_cli). See L(the VyOS OS Platform Options,../network/user_guide/platform_vyos.html). +extends_documentation_fragment: +- vyos.vyos.vyos  """  EXAMPLES = """ | 
