I'm trying to run the below playbook. It gets to the modules task, does 
nothing for about a minutes, then i get the below error. The BigIP is 
reachable via SSH from the ansible server. This playbook is working for 
other BigIP's. I'm also able to run ad-hoc commands from the ansible server 
to this particular BigIP successfully.

f5.sdk_exception.TimeoutError <https://f5.sdk_exception.timeouterror/>: 
Timed out waiting for response

Any ideas? I have a packet capture from the bigip showing back and forth 
ssh traffic while running the playbook.


- name: show clock

  hosts: mygroup

  connection: local

 

  tasks:

  - name: show clock

    bigip_command:

      commands:

        - tmsh show sys clock

      server: "{{ inventory_hostname }}"

      password: "pass"

      user: "root"

      validate_certs: "no"

    delegate_to: localhost

    register: bigip_result

 

  - name: debug

    debug:

     var: bigip_result.stdout_lines
Answer your Question 
<https://devcentral.f5.com/questions/bigip-timing-out-while-running-playbook-58795#add-reply>
 
0
 Rate this Quest

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/f1d9e8db-af48-4d29-a58a-60324004d688%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to