LOGBOOK

HELP

1 / 248
time's up — finish this card
Other keys: showSpace: good1-4: rate0: skip5: flag
Topic Basic Device Configuration

Question

What are the five steps in the Cisco switch boot sequence?

Answer

POST (Power-On Self-Test) → Boot Loader → CPU (Central Processing Unit) init → Flash init → Load IOS — a power-on hardware check, then the bootloader initializes hardware and loads the operating system.

POST, Boot Loader, CPU Init, Flash FS Init, Load IOS.

* The five-step switch boot sequence. *

  1. POST: Stored in ROM (Read-Only Memory), checks CPU, DRAM (Dynamic Random-Access Memory), and flash file system
  2. Boot Loader: Small program in ROM, runs immediately after POST completes
  3. CPU Initialization: Boot loader initializes CPU registers — controls memory mapping, memory quantity, and speed
  4. Flash File System Init: Boot loader initializes the flash file system on the system board
  5. Load IOS: Boot loader locates and loads the default IOS image into memory, then hands control to IOS

Tip: Think of it like booting a PC — hardware check first (POST), then the BIOS/bootloader initializes hardware, then the OS loads from disk (flash).

Go deeper:

A flow diagram of an IBM-compatible PC booting
A flow diagram of an IBM-compatible PC booting
WhoAteMyButter · CC BY-SA 4.0 · Wikimedia Commons
or press any other key
Topic Basic Device Configuration

Question

What does the boot system command do on a Cisco switch, and what happens if the BOOT variable is not set?

Answer

Sets the BOOT environment variable that tells the switch which IOS image to load from flash; if it is not set, the switch just loads the first executable file it can find.

S1(config)# boot system flash:/c2960-lanbasek9-mz.150-2.SE/c2960-lanbasek9-mz.150-2.SE.bin

Command breakdown:

Component Meaning
boot system The main command
flash: The storage device
c2960-lanbasek9-mz.150-2.SE/ Path to the file system (folder)
c2960-lanbasek9-mz.150-2.SE.bin The IOS file name

If BOOT variable is not set: The switch loads and executes the first executable file it can find in flash.

The startup-config file is called config.text and is stored in flash. Use show boot to verify the current IOS boot file.

or press any other key