我正在尝试使用 Ansible 模块配置绑定接口,net_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 创建绑定接口?