1/49
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Operating System (OS)
Sits as the software bridge between computer hardware and user applications.
Cisco IOS
Specifically called Internetwork Operating System used in networking devices like Cisco routers and switches.
Kernel
Manages the hardware directly (CPU, memory, storage).
Shell
Takes user commands (via CLI or GUI) and passes them to the kernel to execute.
Graphical User Interface (GUI)
Uses windows, icons, and menus which are user-friendly but consume more system resources and limit granular control.
Command Line Interface (CLI)
Uses text-based commands, offering lower resource overhead, greater speed, and precise configuration power.
Console
A physical, out-of-band management port used for initial setup or troubleshooting when network access is down.
Secure Shell (SSH)
In-band network methods to manage a device remotely. SSH is encrypted and secure.
Telnet
Sends data in clear text and should be avoided.
AUX Port
An older out-of-band serial connection typically used with a modem for telephone dial-up access.
Terminal Emulation Programs
Software like Tera Term, PuTTY, SecureCRT, or Cisco Packet Tracer required to connect to a device's serial or SSH console port.
User EXEC Mode
Allows only basic monitoring commands and limits you from making any configuration changes.
Privileged EXEC Mode
Unlocks administrative access, diagnostics, and the ability to enter global configuration mode.
Global Configuration Mode
Lets you alter the device-wide configuration settings.
Line Configuration Mode
For managing console or VTY lines.
Interface Configuration Mode
For managing individual ports.
Command Structure Layout
Cisco CLI commands consist of a command followed by any required keywords and arguments.
Tab
Completes a partially typed command or keyword.
Ctrl+Shift+6
The universal break sequence used to interrupt processes.
Up/Down Arrows
Scroll through your command history.
Help Systems
Typing a question mark (?) provides context-sensitive help.
CLI Error Feedback
The interpreter flags mistakes with specific caret (^) markers or text pointers.
Basic Device Configuration
Every Cisco router and switch needs a unique device name using the global configuration command.
Securing Access
Use enable secret
Banner Messages
Configure a legal notification using the banner motd #
Password Encryption
The service password-encryption command encrypts all plain-text passwords.
Running-config
Stored in RAM; holds the active configuration currently in use.
Startup-config
Stored in NVRAM; holds the saved configuration that loads when the device boots up.
IPv4
32-bit dotted-decimal format (e.g., 192.168.1.1).
IPv6
128-bit hexadecimal format separated by colons (e.g., 2001:db8:acad::1/64).
Static vs. Dynamic IP
End hosts can be configured statically or dynamically via DHCP.
RAM (Random Access Memory
Volatile memory that loses data on reboot; stores the running-config
NVRAM (Non-Volatile RAM)
Permanent memory that retains data without power; stores the startup-config
copy running-config startup-config (copy run start)
The Privileged EXEC command used to save active settings to NVRAM.
reload
Reboots the device and discards any unsaved running configuration.
erase startup-config
Clears the configuration stored in NVRAM to reset the device to factory defaults.
Switch Virtual Interface (SVI)
A virtual Layer 2 switch interface (e.g., interface vlan 1) configured to allow remote IPv4/IPv6 management.
no shutdown
The command required to administratively enable/turn on an interface or SVI.
Default Gateway
The local router IP address that allows end hosts and switches to communicate beyond their local network.
Subnet Mask & Prefix Length
The 32-bit mask (IPv4) or prefix length (IPv6, e.g., /64) used to distinguish the network portion from the host portion.
line console 0 & line vty 0 15
he specific line configuration modes used to configure physical console access and virtual terminal remote sessions.
login
The line command required to enforce password authentication when connecting to a console or VTY line
hostname
The exact global configuration command used to assign a unique device name.
configure terminal (conf t)
The command used to move from Privileged EXEC mode into Global Configuration mode.
Keywords vs. Arguments
Keywords are fixed, predefined command parameters (e.g., ip, vlan), while arguments are user-defined variables (e.g., an IP address, password, or name).
In-band vs. Out-of-band Management
Out-of-band refers to dedicated management connections (Console, AUX) that work when network access is down; in-band refers to network-based remote management (SSH, Telnet).
Network Media
The physical transmission channels: copper (electrical pulses), fiber-optic (light pulses), and wireless (radio waves).
Command Prompts & Modes
Recognize the exact prompt context for each command (e.g., Switch# for Privileged EXEC, Switch(config)# for Global Config, Switch(config-line)# for Line, and Switch(config-if)# for Interface)
Line Configuration Sequences
Remember that configuring a console or VTY password requires the login command right after the password to actually activate authentication.
SVI Management Flow
Step 1: Enter SVI configuration mode using interface vlan 1
Step 2: Assign the IP address and subnet mask using ip address
Step 3: Power on the virtual interface using no shutdown
Step 4: Return to global configuration mode using exit
Step 5: Set the default gateway using ip default-gateway