Wireless Access

 View Only
  • 1.  CLI command to check every ap essid bind to which SSID profile

    Posted Dec 21, 2020 08:52 AM

    HI, 

    Does anyone knows what CLI command to check every ap essid bind to which SSID profile?



    ------------------------------
    DarrenPJW
    ------------------------------


  • 2.  RE: CLI command to check every ap essid bind to which SSID profile

    Posted Dec 21, 2020 10:17 AM
    Edited by mkk Dec 21, 2020 10:18 AM

    Hi Darren,

    Are you looking for CLI command's for Aruba Instant (controller-less) or controller based environment? Below some command's for controller based.

    (HomeLAB-MC01) [MDC] #show references wlan ssid-profile corp-ssid-prof

    References to SSID Profile "corp-ssid-prof"
    -------------------------------------------
    Referrer Count
    -------- -----
    wlan virtual-ap "corp-vap-profile" ssid-profile 1
    Total References:1


    (HomeLAB-MC01) [MDC] #show wlan ssid-profile corp-ssid-prof

    SSID Profile "corp-ssid-prof"
    -----------------------------
    Parameter Value
    --------- -----
    SSID enable Enabled
    ESSID HomeLAB-Corp
    WPA Passphrase N/A
    Encryption wpa2-aes
    Opmode transition Enabled
    Enable Management Frame Protection (for WPA2 opmodes) Disabled
    Require Management Frame Protection (for WPA2 opmodes) Disabled
    DTIM Interval 1 beacon periods
    802.11a Basic Rates 24 36 48 54
    802.11a Transmit Rates 24 36 48 54
    802.11g Basic Rates 24 36 48 54
    802.11g Transmit Rates 24 36 48 54
    Station Ageout Time 1000 sec
    Station Refresh Direction bidirectional
    Max Transmit Attempts 8
    RTS Threshold 2333 bytes
    Short Preamble Enabled
    Max Associations 64

    (HomeLAB-MC01) [MDC] #show ap essid

    ESSID Summary
    -------------
    ESSID APs Clients VLAN(s) Encryption
    ----- --- ------- ------- ----------
    HomeLAB-Corp 2 3 201 WPA2 8021X AES
    Casa Del Fiep 2 4 201 WPA2 PSK AES
    HomeLAB-Guest 2 0 202 Open
    Num ESSID:3



    ------------------------------
    Marcel Koedijk | MVP Expert 2020 | ACMP | ACCP | Ekahau ECSE
    ------------------------------



  • 3.  RE: CLI command to check every ap essid bind to which SSID profile

    Posted Dec 21, 2020 10:26 AM
    Edited by jaiwaei36 Dec 21, 2020 10:27 AM

    Hi Marcel,

    Thanks for your reply. I'm looking at controller based deployment

    I actually know about the "show references___ " command. But what if the only thing I know is the SSID name. How can I know this SSID is map to which SSID profile? That was my question. Any show commands?



    ------------------------------
    DarrenPJW
    ------------------------------



  • 4.  RE: CLI command to check every ap essid bind to which SSID profile

    Posted Dec 21, 2020 11:02 AM
    Edited by mkk Dec 21, 2020 11:04 AM

    Hi Darren,

    AFAIK there is no "one hit" command that do what you ask for. But you can work with some command's like this.

    // show the active SSID's in the air//

    (HomeLAB-MC01) [MDC] #show ap essid

    ESSID Summary
    -------------
    ESSID APs Clients VLAN(s) Encryption
    ----- --- ------- ------- ----------
    HomeLAB-Corp 2 2 201 WPA2 8021X AES
    Casa Del Fiep 2 5 201 WPA2 PSK AES
    HomeLAB-Guest 2 0 202 Open
    Num ESSID:3

    // Where in the configuration are this ESSID's configured, which SSID profiles?//

    (HomeLAB-MC01) [MDC] #show configuration effective | begin "wlan ssid"
    wlan ssid-profile "Casa Del Fiep_ssid_prof"
    essid "Casa Del Fiep"
    wpa-passphrase 14ebee52da37a668ec0aa18ce87cc693f4e696e0dbe3f9af
    opmode wpa2-psk-aes
    a-basic-rates 24 36 48 54
    a-tx-rates 24 36 48 54
    g-basic-rates 24 36 48 54
    g-tx-rates 24 36 48 54
    !
    wlan ssid-profile "corp-ssid-prof"
    essid "HomeLAB-Corp"
    opmode wpa2-aes
    a-basic-rates 24 36 48 54
    a-tx-rates 24 36 48 54
    g-basic-rates 24 36 48 54
    g-tx-rates 24 36 48 54
    wmm
    no wmm-uapsd
    !
    wlan ssid-profile "default"
    a-basic-rates 24 36 48 54
    a-tx-rates 24 36 48 54
    g-basic-rates 24 36 48 54
    g-tx-rates 24 36 48 54
    !

    wlan ssid-profile "HomeLAB-Guest_ssid_prof"
    essid "HomeLAB-Guest"
    a-basic-rates 24 36 48 54
    a-tx-rates 24 36 48 54
    g-basic-rates 24 36 48 54
    g-tx-rates 24 36 48 54

    //Where are this ssid-profiles referenced//

    (HomeLAB-MC01) [MDC] #show references wlan ssid-profile "corp-ssid-prof"

    References to SSID Profile "corp-ssid-prof"
    -------------------------------------------
    Referrer Count
    -------- -----
    wlan virtual-ap "corp-vap-profile" ssid-profile 1
    Total References:1

    //Where is the virtual-ap profile bound to one ore more accesspoints groups//

    (HomeLAB-MC01) [MDC] #show references wlan virtual-ap "corp-vap-profile"

    References to Virtual AP profile "corp-vap-profile"
    ---------------------------------------------------
    Referrer Count
    -------- -----
    ap-group "HomeLAB" virtual-ap 1
    Total References:1



    ------------------------------
    Marcel Koedijk | MVP Expert 2020 | ACMP | ACCP | Ekahau ECSE
    ------------------------------