Slide 7
Slide 7 text
Cumulus LinuxをAnsibleで設定する
● NCLUモジュールが用意されているので、それを使い設定できる。
参考記事 https://cumulusnetworks.com/blog/automating-cumulus-linux-ansible/
● taskの例(記事より引用)
- name: Enable OSPF
nclu:
commands:
- add ospf router-id {{ rid }}
- add ospf network {{ item.prefix }} area {{ item.area }}
atomic: true
description: "Enable OSPF"
loop:
- { prefix: 192.168.0.0/16, area: 0.0.0.0 }
7