community.network.pn_snmp_trap_sink – CLI command to create/delete snmp-trap-sink

Note

This plugin is part of the community.network collection (version 3.0.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 community.network.

To use it in a playbook, specify: community.network.pn_snmp_trap_sink.

Synopsis

  • This module can be used to create a SNMP trap sink and delete a SNMP trap sink.

Parameters

Parameter

Comments

pn_cliswitch

string

Target switch to run the CLI on.

pn_community

string

community type.

pn_dest_host

string

destination host.

pn_dest_port

string

destination port.

Default: “162”

pn_type

string

trap type.

Choices:

  • TRAP_TYPE_V1_TRAP

  • TRAP_TYPE_V2C_TRAP ← (default)

  • TRAP_TYPE_V2_INFORM

state

string / required

State the action to perform. Use present to create snmp-trap-sink and absent to delete snmp-trap-sink.

Choices:

  • present

  • absent

Examples

- name: Snmp trap sink functionality
  community.network.pn_snmp_trap_sink:
    pn_cliswitch: "sw01"
    state: "present"
    pn_community: "foo"
    pn_type: "TRAP_TYPE_V2_INFORM"
    pn_dest_host: "192.168.67.8"

- name: Snmp trap sink functionality
  community.network.pn_snmp_trap_sink:
    pn_cliswitch: "sw01"
    state: "absent"
    pn_community: "foo"
    pn_type: "TRAP_TYPE_V2_INFORM"
    pn_dest_host: "192.168.67.8"

Return Values

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

Key

Description

changed

boolean

indicates whether the CLI caused changes on the target.

Returned: always

command

string

the CLI command run on the target node.

Returned: always

stderr

list / elements=string

set of error responses from the snmp-trap-sink command.

Returned: on error

stdout

list / elements=string

set of responses from the snmp-trap-sink command.

Returned: always

Authors

  • Pluribus Networks (@rajaspachipulusu17)