Skip to content

Latest commit

 

History

History
189 lines (152 loc) · 6.35 KB

cisco.nxos.nxos_snmp_traps_module.rst

File metadata and controls

189 lines (152 loc) · 6.35 KB

cisco.nxos.nxos_snmp_traps

(deprecated, removed after 2024-01-01) Manages SNMP traps.

Version added: 1.0.0

DEPRECATED

:Removed in collection release after 2024-01-01 :Why: Updated modules released with more functionality :Alternative: nxos_snmp_server

Synopsis

  • Manages SNMP traps configurations.

Parameters

Parameter Choices/Defaults Comments
group
string / required
    Choices:
  • aaa
  • bfd
  • bgp
  • bridge
  • callhome
  • cfs
  • config
  • eigrp
  • entity
  • feature-control
  • generic
  • hsrp
  • license
  • link
  • lldp
  • mmode
  • ospf
  • pim
  • rf
  • rmon
  • snmp
  • storm-control
  • stpx
  • switchfabric
  • syslog
  • sysmgr
  • system
  • upgrade
  • vtp
  • all
Case sensitive group.
state
string
    Choices:
  • enabled ←
  • disabled
Manage the state of the resource.

Notes

Note

- Tested against NXOSv 7.3.(0)D1(1) on VIRL - Limited Support for Cisco MDS - This module works at the group level for traps. If you need to only enable/disable 1 specific trap within a group, use the cisco.nxos.nxos_command <cisco.nxos.nxos_command_module> module. - Be aware that you can set a trap only for an enabled feature. - For information on using CLI and NX-API see the NXOS Platform Options guide <nxos_platform_options> - For more information on using Ansible to manage network devices see the Ansible Network Guide <network_guide> - For more information on using Ansible to manage Cisco devices see the Cisco integration page.

Examples

# ensure lldp trap configured
- cisco.nxos.nxos_snmp_traps:
    group: lldp
    state: enabled

# ensure lldp trap is not configured
- cisco.nxos.nxos_snmp_traps:
    group: lldp
    state: disabled

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
commands
list
always
command sent to the device

Sample:
snmp-server enable traps lldp ;


Status

  • This module will be removed in a release after 2024-01-01. [deprecated]
  • For more information see DEPRECATED.

Authors

  • Jason Edelman (@jedelman8)