Ansible Playbook for Cumulus NetQ Agent Installation

Here a short Ansible script to install the Cumulus NetQ agent on Cumulus Linux switches. — – hosts: spine leaf remote_user: cumulus gather_facts: no become: yes vars: ansible_become_pass: “CumulusLinux!” tasks: – name: Install cumulus-netq apt: name=cumulus-netq update_cache=yes state=present register: result – name: Restart Syslog service service: name=rsyslog state=restarted when: result.stdout is defined – pause: seconds=5 …

Ansible Playbook for Cumulus Linux (Layer 3 Fabric)

Like promised, here a basic Ansible Playbook for a Cumulus Linux Layer 3 Fabric running BGP which you see in large-scale data centre deployments. You push the layer 2 network as close as possible to the server and use ECMP (Equal-cost multi-path) routing to distribute your traffic via multiple uplinks. These kind of network designs …