无法使用 Ansible 在 CentOS 7 上配置网络绑定

无法使用 Ansible 在 CentOS 7 上配置网络绑定

我正在尝试使用 Ansible 模块配置绑定接口,net_linkagg但任务失败并出现以下错误。

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

我查过了模块文档,但没有与ansible_network_osCentOS 匹配的变量的值。

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

如何使用 Ansible 为 CentOS 创建绑定接口?

答案1

问:“如何使用 Ansible 为 CentOS 创建绑定接口?”

答:使用nmcli – 管理网络Ansible 模块。


笔记

相关内容