wwt.ansible_dnac.dnac_wireless_ssid (1.1.6) — module

Manage SSID

| "added in version" 2.8 of wwt.ansible_dnac"

Authors: Jeff Andiorio (@jandiorio)

preview | supported by jeff andiorio

Install collection

Install with ansible-galaxy collection install wwt.ansible_dnac:==1.1.6


Add to requirements.yml

  collections:
    - name: wwt.ansible_dnac
      version: 1.1.6

Description

manage the create/update/delete of SSIDs in DNAC


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.

- name: build wireless ssid
  dnac_wireless_ssid:
    host: "{{ inventory_hostname }}"
    port: '443'
    username: "{{ username }}"
    password: "{{ password }}"
    state: present
    #
    name: 'SSID-1'
    security_level: 'WPA2_PERSONAL'
    passphrase: SUPERSECRET

Inputs

    
host:
    description:
    - Host is the target Cisco DNA Center controller to execute against.
    required: true

name:
    description:
    - Name of the wireless SSID
    required: true

port:
    choices:
    - 80
    - 443
    default: 443
    description:
    - Port is the TCP port for the HTTP connection.
    required: false

state:
    choices:
    - present
    - absent
    default: present
    description:
    - State provides the action to be executed using the terms present, absent, etc.
    required: false

timeout:
    default: 30
    description:
    - The timeout provides a value for how long to wait for the executed command complete.
    required: false

use_ssl:
    choices:
    - true
    - false
    default: true
    description:
    - Enter the boolean value for whether to use SSL or not.
    required: false

password:
    description:
    - Provide the password for connection to the Cisco DNA Center Controller.
    required: true

username:
    description:
    - Provide the username for the connection to the Cisco DNA Center Controller.
    required: true

use_proxy:
    choices:
    - true
    - false
    default: true
    description:
    - Enter a boolean value for whether to use proxy or not.
    required: false

passphrase:
    description:
    - secret passphrase for WPA2_PERSONAL
    required: false

radio_policy:
    choices:
    - Dual band operation (2.4GHz and 5GHz)
    - Dual band operation with band select
    - 5GHz only
    - 2.4GHz only
    description:
    - SSID radio policy to associate
    required: false

traffic_type:
    choices:
    - voicedata
    - data
    default: voicedata
    description:
    - type of traffic for SSID
    required: false

security_level:
    choices:
    - WPA2_ENTERPRISE
    - WPA2_PERSONAL
    - OPEN
    description:
    - security level for the SSID
    required: true

validate_certs:
    choices:
    - true
    - false
    default: true
    description:
    - Specify if verifying the certificate is desired.
    required: false

enable_fastlane:
    default: false
    description:
    - boolean to enable fastlane
    required: false

fast_transition:
    choices:
    - Adaptive
    - Enable
    - Disable
    default: Disable
    description:
    - configuration of fast transition
    required: false

enable_mac_filtering:
    default: false
    description:
    - boolean for enableing MAC filtering
    required: false

enable_broadcast_ssid:
    default: true
    description:
    - boolean for SSID broadcast
    required: false