Skip to content

Latest commit

 

History

History
201 lines (165 loc) · 6.51 KB

cisco.nxos.nxos_snmp_community_module.rst

File metadata and controls

201 lines (165 loc) · 6.51 KB

cisco.nxos.nxos_snmp_community

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

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 community configuration.

Parameters

Parameter Choices/Defaults Comments
access
string
    Choices:
  • ro
  • rw
Access type for community.
acl
string
ACL name to filter snmp requests or keyword 'default'.
community
string / required
Case-sensitive community string.
group
string
Group to which the community belongs.
state
string
    Choices:
  • present ←
  • absent
Manage the state of the resource.

Notes

Note

- Tested against NXOSv 7.3.(0)D1(1) on VIRL - Limited Support for Cisco MDS - 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 snmp community is configured
- cisco.nxos.nxos_snmp_community:
    community: TESTING7
    group: network-operator
    state: present

Return Values

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

Key Returned Description
commands
list
always
commands sent to the device

Sample:
['snmp-server community TESTING7 group network-operator']


Status

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

Authors

  • Jason Edelman (@jedelman8)
  • Gabriele Gerbino (@GGabriele)