前提・実現したいこと
ansible ver 2.10でplaybookを実行しましたが、エラーが出て実行できませんでした。
このエラーを解消するにはどうしたらよいでしょうか?
発生している問題・エラーメッセージ
[admin@localhost ansible]$ ansible-playbook show_ver.yaml PLAY [ios] ********************************************************************************** TASK [run show version on remote devices] ***************************************************** fatal: [172.16.1.10]: FAILED! => {"changed": false, "msg": "Connection type ssh is not valid for this module"} PLAY RECAP ************************************************************************************ 172.1.1.10 : ok=0 changed=0 unreachable=0 failed=1 skipped=0 rescued=0 ignored=0
該当のソースコード
- hosts: ios gather_facts: no tasks: - name: show ver cisco.ios.ios_command: commands: - show version register: register_show_ver vars: cli: host: "{{ inventory_hostname }}" username: "{{ ansible_user }}" password: "{{ ansible_password }}" authorize: true auth_pass: "{{ cisco_enable_secret }}"
[admin@localhost ansible]$ cat hosts [ios] 172.16.1.10 [ios:vars] ansible_user=root ansible_password=root cisco_enable_secret=root
[admin@localhost ansible]$ cat ansible.cfg [defaults] inventory = ./hosts
補足情報(FW/ツールのバージョンなど)
[admin@localhost ansible]$ ansible --version ansible 2.10.5 config file = /home/admin/ansible-script/ansible.cfg configured module search path = ['/home/admin/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules'] ansible python module location = /usr/local/lib/python3.6/site-packages/ansible executable location = /usr/local/bin/ansible python version = 3.6.8 (default, Nov 16 2020, 16:55:22) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)]
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/06 05:49
2021/02/06 06:50
2021/02/06 07:03 編集
2021/02/06 11:21
2021/02/06 13:01
2021/02/06 15:43
2021/02/07 01:59