Centos

使用 Ansible 在 CentOS 7 上配置網路綁定失敗

  • October 2, 2019

我正在嘗試使用 Ansiblenet_linkagg模組配置綁定介面,但任務失敗並出現以下錯誤。

FAILED! => {"msg": "ansible_network_os must be specified on this host to use platform agnostic modules"}

我在模組文件中進行了查找,但沒有ansible_network_os與 CentOS 匹配的變數的值。

 - name: Configure Bonding Interfaces (Private Network)
   net_linkagg:
       name: bond1
       members: 
        - "{{ bond1Iface01 }}"
        - "{{ bond1Iface02 }}"
       purge: false
       state: up
       mode: active  

如何使用 Ansible 為 CentOS 創建綁定介面?

問:“如何使用 Ansible 為 CentOS 創建綁定介面?”

A: 使用nmcli – 管理網路Ansible 模組。


筆記

引用自:https://serverfault.com/questions/986454