Difference between revisions of "Ios ping"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
+
{{lowercase}}
 
  #!/usr/bin/env ansible-playbook
 
  #!/usr/bin/env ansible-playbook
 
   
 
   
Line 7: Line 7:
 
   remote_user: USERNAME
 
   remote_user: USERNAME
 
   
 
   
   tasks:
+
   [[tasks:]]
 
       - ios_ping:
 
       - ios_ping:
 
           dest: 10.10.10.1
 
           dest: 10.10.10.1
Line 20: Line 20:
 
* [[Ansible examples]]
 
* [[Ansible examples]]
 
* <code>[[--private-key]]</code>
 
* <code>[[--private-key]]</code>
 +
* <code>ansible yourwebserversgroup [[-m ping]]</code>
 
* <code>[[ios_command]]</code>
 
* <code>[[ios_command]]</code>
 
[[ansible_connection:]] ansible.netcommon.[[network_cli]]
 
[[ansible_connection:]] ansible.netcommon.[[network_cli]]

Latest revision as of 19:01, 20 October 2021

#!/usr/bin/env ansible-playbook

- hosts: HOSTNAME
  gather_facts: false
  connection: network_cli
  remote_user: USERNAME

  tasks:
      - ios_ping:
          dest: 10.10.10.1


TASK [ios_ping] 
****************************************************************************************************************************
fatal: [SERVER]: FAILED! => {"changed": false, "msg": "Connection type ssh is not valid for this module"}
It maybe a paramiko problem: https://github.com/ansible/ansible/issues/31699

Related terms[edit]

ansible_connection: ansible.netcommon.network_cli

ansible_network_os: ios
ansible_become: yes
ansible_become_method: enable

See also[edit]

Advertising: