Midterm Flashcards
Mopasar
What is the purpose of Cisco IOS Software
- Provides basic routing and switching functions.
- Enables reliable and secure access to networked resources.
- Supports network scalability.
What are the different methods to access the Cisco IOS CLI
- Console (physical connection)
- AUX (auxiliary port for modem access)
- Telnet/SSH (remote access)
How do you switch from User EXEC to Privileged EXEC mode?
Enter the enable command:
Router> enable
Password: [enter password]
Router#
What is the purpose of the show version command
Displays:
* IOS version and image name.
* Hardware details (CPU, memory).
* Uptime and configuration register value.
* Boot source (e.g., flash).
What does the show flash command verify?
Checks available flash memory for storing IOS images.
Lists files in flash and their sizes.
Describe the router startup sequence.
ROM: Loads bootstrap program.
Flash: Locates and loads the Cisco IOS image.
NVRAM: Loads the startup-config (if none, enters Setup Mode).
TFTP Server/Console: Fallback if no config is found.
When does a router enter Setup Mode?
When no startup-config exists in NVRAM.
When the user manually runs setup or answers “yes” to the initial dialog.
How do you abort Setup Mode without saving?
Ctrl+C.
What are the keyboard shortcuts for CLI navigation?
Ctrl+A - Move to line start.
Ctrl+E - Move to line end.
Ctrl+U - Erase entire line.
Ctrl+W - Erase one word.
Ctrl+P (↑) - Recall previous command.
Ctrl+Z - Exit config mode.
? - Context-sensitive help.
TAB - Auto-complete commands.
How do you adjust the command history buffer size?
Router(config-line)# history size [0-256]
What do LED indicators on a router signify?
Green OK LED: System initialized correctly.
Interface LEDs: Activity status (e.g., Ethernet link).
What is ROMMON mode used for?
Password recovery or OS restoration when Flash is corrupted.
What is the difference between Router> and Router# prompts?
Router>: User EXEC (limited commands).
Router#: Privileged EXEC (full access).
What does the caret symbol (^) indicate in CLI errors?
Points to the exact location of a syntax error in a command.
IOS
Internetwork Operating System
CLI
Command-Line Interface
a text-based interface where users interact with a computer by typing commands into a terminal or command prompt
NVRAM
Non-Volatile RAM
TFTP
Trivial File Transfer Protocol
a simple, lightweight protocol used for transferring files
ROMMON
ROM Monitor
a bootstrap program that initializes the hardware and boots the Cisco IOS XE software when you power on or reload a router
How do you set a console password
Router(config)# line console 0
Router(config-line)# password cisco
Router(config-line)# login
What is the difference between enable password and enable secret?
enable password: Stores password in plaintext (less secure).
enable secret: Uses MD5 encryption (preferred; overrides enable password).
How do you encrypt all plaintext passwords in the configuration?
Router(config)# service password-encryption
What commands configure an IP address on an interface
Router(config)# interface fastethernet 0/0
Router(config-if)# ip address 192.168.1.1 255.255.255.0
Router(config-if)# no shutdown
Why might an interface show “administratively down”?
The interface was manually disabled with shutdown. Use no shutdown to activate it.