community.general.pn_prefix_list_network (0.1.1) — module

CLI command to add/remove prefix-list-network

Authors: Pluribus Networks (@rajaspachipulusu17)

preview | supported by community

Install collection

Install with ansible-galaxy collection install community.general:==0.1.1


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.1.1

Description

This module is used to add network associated with prefix list and remove networks associated with prefix list.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: prefix list network add
  pn_prefix_list_network:
    pn_cliswitch: "sw01"
    pn_name: "foo"
    pn_network: "172.16.3.1"
    pn_netmask: "24"
    state: "present"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: prefix list network remove
  pn_prefix_list_network:
    pn_cliswitch: "sw01"
    state: "absent"
    pn_name: "foo"
    pn_network: "172.16.3.1"
    pn_netmask: "24"

Inputs

    
state:
    choices:
    - present
    - absent
    description:
    - State the action to perform. Use C(present) to create prefix-list-network and C(absent)
      to delete prefix-list-network.
    required: true
    type: str

pn_name:
    description:
    - Prefix List Name.
    required: false
    type: str

pn_netmask:
    description:
    - netmask of the network associated the prefix list.
    required: false
    type: str

pn_network:
    description:
    - network associated with the prefix list.
    required: false
    type: str

pn_cliswitch:
    description:
    - Target switch to run the CLI on.
    required: false
    type: str

Outputs

changed:
  description: indicates whether the CLI caused changes on the target.
  returned: always
  type: bool
command:
  description: the CLI command run on the target node.
  returned: always
  type: str
stderr:
  description: set of error responses from the prefix-list-network command.
  returned: on error
  type: list
stdout:
  description: set of responses from the prefix-list-network command.
  returned: always
  type: list