A security team is hardening administrative login to its routers and switches. The current build relies on a single shared line password, and the team wants to align with the AAA model and strong password-policy guidance while keeping the option to fall back to the device itself if the central server is unreachable. Which two measures correctly strengthen device access control in line with these aims? Select TWO.
- AStore privileged-mode protection with the enable secret command so the password is held as a salted hash rather than as recoverable plaintext. Correct
- BApply the service password-encryption command and treat its weak reversible cipher as the primary defence for the shared line password.
- CDefine an AAA login method list that queries a TACACS+ server first and names the local user database as the next method in the list. Correct
- DReplace administrator passwords with a single shared service account so that every engineer authenticates with the same credential against the server.
- EDisable the local user database entirely so that authentication can only ever succeed through the central server with no device-level accounts.
Why A is correct: Enable secret hashes the privileged password, so a config dump does not expose a recoverable string, which is a genuine password-policy improvement over the older enable password.
Why B is wrong: Service password-encryption only obscures passwords with a trivially reversible type 7 cipher, so relying on it as the primary defence is tempting but does not deliver real cryptographic protection.
Why C is correct: A method list that tries TACACS+ then local gives centralised AAA authentication with a working fallback when the server is unreachable, matching both stated aims.
Why D is wrong: A shared account destroys per-user accountability and weakens policy, so although it looks like it simplifies central login it directly contradicts strong access-control practice.
Why E is wrong: Removing local accounts is tempting as a way to force central control, but it eliminates the very fallback the team asked for and locks everyone out during a server outage.