cnos_vrf – Manage VRFs on Lenovo CNOS network devices¶
New in version 2.8.
Parameters¶
Examples¶
- name: Create vrf
  cnos_vrf:
    name: test
    rd: 1:200
    interfaces:
      - Ethernet1/33
    state: present
- name: Delete VRFs
  cnos_vrf:
    name: test
    state: absent
- name: Create aggregate of VRFs with purge
  cnos_vrf:
    aggregate:
      - { name: test4, rd: "1:204" }
      - { name: test5, rd: "1:205" }
    state: present
    purge: yes
- name: Delete aggregate of VRFs
  cnos_vrf:
    aggregate:
      - name: test2
      - name: test3
      - name: test4
      - name: test5
    state: absent
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
| Key | Returned | Description | 
|---|---|---|
| 
                
                commands
                
                 
                  list
                                       
                                 | 
            always | 
                                         The list of configuration mode commands to send to the device 
                                    Sample: 
                                            ['vrf context test', 'rd 1:100', 'interface Ethernet1/44', 'vrf member test'] 
                                 | 
        
Status¶
This module is not guaranteed to have a backwards compatible interface. [preview]
This module is maintained by the Ansible Community. [community]
Authors¶
Anil Kumar Muraleedharan (@amuraleedhar)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.