回答編集履歴

3

たびたびすみません、hosts が誤っていたため修正しました

2021/02/06 05:26

投稿

akira6592
akira6592

スコア40

test CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  ```yaml
24
24
 
25
- - hosts: ios_tera
25
+ - hosts: ios
26
26
 
27
27
  gather_facts: no
28
28
 

2

typo修正

2021/02/06 05:26

投稿

akira6592
akira6592

スコア40

test CHANGED
@@ -56,9 +56,9 @@
56
56
 
57
57
  [ios:vars]
58
58
 
59
- ansible_connection=network_cli # コネクションプラグインの指定
59
+ ansible_connection=ansible.netcommon.network_cli # コネクションプラグインの指定
60
60
 
61
- ansible_network_os=ios # ネットワークOSの指定
61
+ ansible_network_os=cisso.ios.ios # ネットワークOSの指定
62
62
 
63
63
  ansible_user=root
64
64
 
@@ -66,9 +66,9 @@
66
66
 
67
67
  ansible_become=True # authorize の代わり
68
68
 
69
- ansible_become_method=enable # 特権昇格方式の指定
69
+ ansible_become_method=ansible.netcommon.enable # 特権昇格方式の指定
70
70
 
71
- ansible_become_password=secret # 特権パスワード
71
+ ansible_become_password=root # 特権パスワード
72
72
 
73
73
  ```
74
74
 
@@ -82,4 +82,4 @@
82
82
 
83
83
 
84
84
 
85
- 今回の例では、インベントリファイル内に各変数を定義しましたが、`group_vars/ios.yml` のようなグループ変数の YAML に書き出しても構いません。
85
+ 今回の例では、インベントリファイル内に各変数を定義しましたが、`group_vars/ios.yml` のようなグループ変数の YAML に書き出しても構いません。

1

typo修正など

2021/02/06 05:22

投稿

akira6592
akira6592

スコア40

test CHANGED
@@ -78,8 +78,8 @@
78
78
 
79
79
  `ios_*` モジュールの実行に必要な変数は、以下の公式ドキュメントのページで確認できます。
80
80
 
81
- https://docs.ansible.com/ansible/latest/network/user_guide/platform_ios.html
81
+ [IOS Platform Options](https://docs.ansible.com/ansible/latest/network/user_guide/platform_ios.html)
82
82
 
83
83
 
84
84
 
85
- 今回の例では、インベントリファイル内に書く変数をて定義しましたが、`group_vars/ios.yml` のようなグループ変数の YAML に書き出しても構いません。
85
+ 今回の例では、インベントリファイル内に変数をて定義しましたが、`group_vars/ios.yml` のようなグループ変数の YAML に書き出しても構いません。