.. _cisco.nxos.nxos_snmp_host_module: ************************* cisco.nxos.nxos_snmp_host ************************* **(deprecated, removed after 2024-01-01) Manages SNMP host configuration.** Version added: 1.0.0 .. contents:: :local: :depth: 1 DEPRECATED ---------- :Removed in collection release after 2024-01-01 :Why: Updated modules released with more functionality :Alternative: nxos_snmp_server Synopsis -------- - Manages SNMP host configuration parameters. Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
community
string
Community string or v3 username.
snmp_host
string / required
IP address of hostname of target host.
snmp_type
string
    Choices:
  • trap
  • inform
type of message to send to host. If this is not specified, trap type is used.
src_intf
string
Source interface. Must be fully qualified interface name. If state = absent, the interface is removed.
state
string
    Choices:
  • present ←
  • absent
Manage the state of the resource. If state = present, the host is added to the configuration. If only vrf and/or vrf_filter and/or src_intf are given, they will be added to the existing host configuration. If state = absent, the host is removed if community parameter is given. It is possible to remove only vrf and/or src_int and/or vrf_filter by providing only those parameters and no community parameter.
udp
string
Default:
"162"
UDP port number (0-65535).
v3
string
    Choices:
  • noauth
  • auth
  • priv
Use this when verion is v3. SNMPv3 Security level.
version
string
    Choices:
  • v1
  • v2c
  • v3
SNMP version. If this is not specified, v1 is used.
vrf
string
VRF to use to source traffic to source. If state = absent, the vrf is removed.
vrf_filter
string
Name of VRF to filter. If state = absent, the vrf is removed from the filter.

Notes ----- .. note:: - Tested against NXOSv 7.3.(0)D1(1) on VIRL - Limited Support for Cisco MDS - ``state=absent`` removes the host configuration if it is configured. - For information on using CLI and NX-API see the :ref:`NXOS Platform Options guide ` - For more information on using Ansible to manage network devices see the :ref:`Ansible Network Guide ` - For more information on using Ansible to manage Cisco devices see the `Cisco integration page `_. Examples -------- .. code-block:: yaml # ensure snmp host is configured - cisco.nxos.nxos_snmp_host: snmp_host: 192.0.2.3 community: TESTING state: present Return Values ------------- Common return values are documented `here `_, the following are the fields unique to this module: .. raw:: html
Key Returned Description
commands
list
always
commands sent to the device

Sample:
['snmp-server host 192.0.2.3 filter-vrf another_test_vrf']


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)