A network engineer needs to configure secure SSH remote management on a Cisco IOS XE router using local database authentication. Place the CLI configuration steps in the correct logical and CLI dependency order from first to last.
- 1Configure the IP domain name in global configuration mode using `ip domain name enterprise.lab`.
- 2Generate the RSA key pair using `crypto key generate rsa general-keys modulus 2048`.
- 3Create a local administrative account using `username netadmin secret S3cur3!Pass2026`.
- 4Access virtual terminal line submode using `line vty 0 4`.
- 5Enforce local authentication and SSH transport using `login local` and `transport input ssh`.
Cevap
The correct order of steps is: 1) Configure the IP domain name (`ip domain name enterprise.lab`), 2) Generate the RSA key pair (`crypto key generate rsa general-keys modulus 2048`), 3) Create a local user account with secret encryption (`username netadmin secret S3cur3!Pass2026`), 4) Enter VTY line configuration submode (`line vty 0 4`), and 5) Enforce local login and SSH protocol access (`login local` and `transport input ssh`).
To successfully enable SSH remote access authenticated by the local user database, CLI commands must follow specific mode hierarchy and operational dependencies. First, `ip domain name` must be configured in global configuration mode to form the system FQDN. Next, `crypto key generate rsa` creates the encryption keys required to initialize SSH server functionality. Third, a local user account is configured with `username secret`. Fourth, line configuration mode is entered via `line vty 0 4`. Finally, `login local` and `transport input ssh` are applied to enforce local database authentication and disallow unencrypted transport.
Adım Adım Çözüm
Anahtar Kavram
Cisco IOS XE SSH configuration sequence and local database authentication dependencies
Tahmini Süre:1m 30s