Note
This module is part of the cisco.nxos collection (version 9.4.0).
You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install cisco.nxos.
To use it in a playbook, specify: cisco.nxos.nxos_vrrp.
New in cisco.nxos 1.0.0
Parameter | Comments |
|---|---|
admin_state string | Used to enable or disable the VRRP process. Choices:
|
authentication string | Clear text authentication string or ‘default’ keyword |
group string / required | VRRP group number. |
interface string / required | Full name of interface that is being managed for VRRP. |
interval string | Time interval between advertisement or ‘default’ keyword |
preempt boolean | Enable/Disable preempt. Choices:
|
priority string | VRRP priority or ‘default’ keyword |
state string | Specify desired state of the resource. Choices:
|
vip string | VRRP virtual IP address or ‘default’ keyword |
Note
state=absent removes the VRRP group if it exists on the device.- name: Ensure vrrp group 100 and vip 10.1.100.1 is on vlan10
cisco.nxos.nxos_vrrp:
interface: vlan10
group: 100
vip: 10.1.100.1
- name: Ensure removal of the vrrp group config
cisco.nxos.nxos_vrrp:
interface: vlan10
group: 100
vip: 10.1.100.1
state: absent
- name: Re-config with more params
cisco.nxos.nxos_vrrp:
interface: vlan10
group: 100
vip: 10.1.100.1
preempt: false
priority: 130
authentication: AUTHKEY
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
|---|---|
commands list / elements=string | commands sent to the device Returned: always Sample: |
© 2012–2018 Michael DeHaan
© 2018–2025 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/cisco/nxos/nxos_vrrp_module.html