Which Commands Configure AAA for Central Web Authentication on a 9800 WLC?

An engineer must configure AAA on a Cisco 9800 WLC for central web authentication. Which two commands are needed to accomplish this task? (Choose two.)

  1. Device(config)# aaa server radius dynamic-author Source Reference Answer
  2. (Cisco Controller) > config wlan aaa-override disable < wlan-id >
  3. (Cisco Controller) > config radius acct add 10.10.10.12 1812 SECRET
  4. Device(config-locsvr-da-radius)# client 10.10.10.12 server-key 0 SECRET Source Reference Answer
  5. (Cisco Controller) > config wlan aaa-override enable < wlan-id >

Community Votes

AD
100%

100% of anonymous learners picked answer AD. Votes are pick records left by other test-takers — they are not the verified answer.

Community Insight

The question evaluates whether candidates understand that CWA relies on RADIUS Dynamic Authorization (CoA) for post-authentication policy enforcement, rather than traditional WLAN-level AAA override settings.

This question tests the exact AAA commands required to enable Central Web Authentication (CWA) on a Cisco Catalyst 9800 WLC, highlighting the dependency on RADIUS Dynamic Authorization. Community consensus strongly supports options A and D, confirming that global dynamic author activation and RADIUS client key configuration are mandatory.

Candidates frequently select AE, incorrectly applying legacy WLAN AAA override commands instead of recognizing that CWA requires global RADIUS dynamic authorization configuration on the IOS-XE-based WLC.

Community Discussion (13 comments)

Iarn 👍 1 Selected: AD
I think people choice of and and AE is due to the command sets being related. # aaa server radius dynamic-author # client <radius-server-ip> server-key <shared-key>
matass_md 👍 1 Selected: AE
A and E , recall there were questions in this 350-401 topic where we were asked what changes must we do for ISE(AAA Server) can assign custom VLAN's to users when they log in , and the right answer there was (first box to check) "enable AAA override" .
yasmiine 👍 2 Selected: AD
Anwser AD. Réf: https://www.cisco.com/c/en/us/support/docs/wireless/catalyst-9800-series-wireless-controllers/213919-configure-802-1x-authentication-on-catal.pdf
IgorLVG 👍 2
ref: https://www.cisco.com/c/en/us/support/docs/wireless/catalyst-9800-series-wireless-controllers/213920-central-web-authentication-cwa-on-cata.html Here is the relevant part of the configuration of the WLC that corresponds to this example: aaa new-model ! aaa authorization network CWAauthz group radius aaa accounting identity CWAacct start-stop group radius ! aaa server radius dynamic-author client <ISE-IP> server-key cisco123 ! aaa session-id common ! ! radius server ISE-server address ipv4 <ISE-IP> auth-port 1812 acct-port 1813 key cisco123 ! ! (check the rest in the URL) so: ANS: AD
masrur 👍 2 Selected: AD
Configures the Change of Authorization (CoA) on the controller. # aaa server radius dynamic-author Specifies a RADIUS client and the RADIUS key to be shared between a device and a RADIUS client. # client 123.123.134.112 server-key 0 SECRET
Adalberto 👍 1 Selected: CD
C and D are the answers
Adalberto 👍 1
To configure AAA on a Cisco 9800 WLC for central web authentication, you’ll need the following two commands: Device(config)# aaa server radius dynamic-author: This command enables the RADIUS dynamic authorization feature and enters dynamic authorization local server configuration mode1. (Cisco Controller) > config wlan aaa-override enable <wlan-id>: This command enables AAA override for a specific WLAN, allowing you to apply custom authentication, authorization, and accounting (AAA) settings for that WLAN1. Remember to adjust the <wlan-id> placeholder with the actual WLAN ID you want to configure. These commands will help you set up central web authentication effectively on your Cisco 9800 WLC. 🛡️
you_ 👍 2 Selected: AD
Going through elimination I think the answer is AD
dc583a7 👍 2 Selected: AD
https://www.cisco.com/c/en/us/td/docs/wireless/controller/9800/17-14/config-guide/b_wl_17_14_cg/m_vewlc_central_web_authentication.html Configuring AAA for Central Web Authentication
felix_simon 👍 1
A, C is OK https://www.cisco.com/c/en/us/td/docs/wireless/controller/9800/config-guide/b_wl_16_10_cg/central-web-authentication.html
joseromerogarci 👍 2 Selected: AD
B, C and E does not exist in a 9800 WLC ???????-WLC#configure ? confirm Confirm replacement of running-config with a new config file memory Configure from NV memory network Configure from a TFTP network host overwrite-network Overwrite NV memory from TFTP network host replace Replace the running-config with a new config file revert Parameters for reverting the configuration terminal Configure from the terminal <cr> <cr>
Idaklesiewicz 👍 2
C and E. You will never see A on a wireless controller CLI. That’s a Switch/Router.
RickAO76 👍 1 Selected: AE
A and E (In my Opinion) A - configures the WLC to use RADIUS for dynamic authorization (correct) B - diables AAA override (central web auth, we should want AAA override) C - configures a RADIUS accounting server (logging, not used for authentication) D - appears to be configuring a local RADIUS server on device, rather then setting up central web auth. E - enables AAA override for the WLAN, allowing WLC to use AAA for client authentication/authorization

Comments & Corrections

No comments yet — spotted an error or have a note? Share it below.

Log in to comment, report an error, or add a note about this question.

Submitted for moderation before publishing. Keep it helpful and respectful.

Expert Analysis

Correct Answer Explanation

Central Web Authentication (CWA) on the Cisco Catalyst 9800 WLC requires seamless communication between the wireless controller and the RADIUS/ISE server to enforce policies after a user successfully authenticates via the captive portal. To enable this, the WLC must support RADIUS Dynamic Authorization (Change of Authorization or CoA).

Option A (aaa server radius dynamic-author) is the first mandatory step. It globally enables the dynamic authorization feature on the IOS-XE-based WLC and transitions the CLI into the local server dynamic authorization configuration mode. Once in this mode, Option D (client 10.10.10.12 server-key 0 SECRET) correctly defines the remote RADIUS server IP address and the shared secret used to secure CoA messages between the WLC and the authentication server. Together, these two commands establish the necessary pathway for ISE to dynamically push VLAN assignments, ACLs, or session timeouts to the WLC.

Why Other Options Are Incorrect

  • Option B & E reference config wlan aaa-override, which is either legacy AireOS syntax or misapplied in this context. The 9800 WLC handles CWA through global AAA and RADIUS CoA mechanisms, not WLAN-level override flags. Additionally, disabling override (B) would actually break CWA functionality.
  • Option C configures a RADIUS accounting server. While accounting is useful for auditing and billing, it plays no role in the authentication flow or dynamic policy assignment required for CWA.

Key Technical Concept

CWA fundamentally depends on RADIUS Dynamic Authorization. Without enabling aaa server radius dynamic-author and registering the RADIUS client with a valid server-key, the WLC cannot receive or process CoA packets from ISE, rendering centralized policy enforcement impossible.

Community Insights & References

Multiple candidates confirmed AD by cross-referencing official Cisco configuration guides. As noted in the community, the CLI context shift to Device(config-locsvr-da-radius)# in Option D directly follows the execution of Option A, making them a syntactically and functionally linked pair.

Official Reference

Exam Strategy

When answering 9800 WLC AAA questions, always verify whether the scenario involves Central Web Authentication or Dynamic Authorization. If so, immediately look for aaa server radius dynamic-author paired with a client statement containing the RADIUS server IP and shared key. Disregard legacy AireOS-style WLAN override commands and accounting configurations, as they are common distractors in IOS-XE wireless exams.

Related Analysis

Practice All 350-401 Questions

Access 218 questions with complete answers and detailed explanations.

View Full 350-401 Practice Test →

← Back to 350-401 Study Guide