Networking and Cisco IOS: Essential Configuration and Security Commands

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/49

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 9:30 PM on 8/31/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

50 Terms

1
New cards

Operating System (OS)

Sits as the software bridge between computer hardware and user applications.

2
New cards

Cisco IOS

Specifically called Internetwork Operating System used in networking devices like Cisco routers and switches.

3
New cards

Kernel

Manages the hardware directly (CPU, memory, storage).

4
New cards

Shell

Takes user commands (via CLI or GUI) and passes them to the kernel to execute.

5
New cards

Graphical User Interface (GUI)

Uses windows, icons, and menus which are user-friendly but consume more system resources and limit granular control.

6
New cards

Command Line Interface (CLI)

Uses text-based commands, offering lower resource overhead, greater speed, and precise configuration power.

7
New cards

Console

A physical, out-of-band management port used for initial setup or troubleshooting when network access is down.

8
New cards

Secure Shell (SSH)

In-band network methods to manage a device remotely. SSH is encrypted and secure.

9
New cards

Telnet

Sends data in clear text and should be avoided.

10
New cards

AUX Port

An older out-of-band serial connection typically used with a modem for telephone dial-up access.

11
New cards

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.

12
New cards

User EXEC Mode

Allows only basic monitoring commands and limits you from making any configuration changes.

13
New cards

Privileged EXEC Mode

Unlocks administrative access, diagnostics, and the ability to enter global configuration mode.

14
New cards

Global Configuration Mode

Lets you alter the device-wide configuration settings.

15
New cards

Line Configuration Mode

For managing console or VTY lines.

16
New cards

Interface Configuration Mode

For managing individual ports.

17
New cards

Command Structure Layout

Cisco CLI commands consist of a command followed by any required keywords and arguments.

18
New cards

Tab

Completes a partially typed command or keyword.

19
New cards

Ctrl+Shift+6

The universal break sequence used to interrupt processes.

20
New cards

Up/Down Arrows

Scroll through your command history.

21
New cards

Help Systems

Typing a question mark (?) provides context-sensitive help.

22
New cards

CLI Error Feedback

The interpreter flags mistakes with specific caret (^) markers or text pointers.

23
New cards

Basic Device Configuration

Every Cisco router and switch needs a unique device name using the global configuration command.

24
New cards

Securing Access

Use enable secret to secure entry into Privileged EXEC mode.

25
New cards

Banner Messages

Configure a legal notification using the banner motd # # command.

26
New cards

Password Encryption

The service password-encryption command encrypts all plain-text passwords.

27
New cards

Running-config

Stored in RAM; holds the active configuration currently in use.

28
New cards

Startup-config

Stored in NVRAM; holds the saved configuration that loads when the device boots up.

29
New cards

IPv4

32-bit dotted-decimal format (e.g., 192.168.1.1).

30
New cards

IPv6

128-bit hexadecimal format separated by colons (e.g., 2001:db8:acad::1/64).

31
New cards

Static vs. Dynamic IP

End hosts can be configured statically or dynamically via DHCP.

32
New cards

RAM (Random Access Memory

Volatile memory that loses data on reboot; stores the running-config

33
New cards

NVRAM (Non-Volatile RAM)

Permanent memory that retains data without power; stores the startup-config

34
New cards

copy running-config startup-config (copy run start)

The Privileged EXEC command used to save active settings to NVRAM.

35
New cards

reload

Reboots the device and discards any unsaved running configuration.

36
New cards

erase startup-config

Clears the configuration stored in NVRAM to reset the device to factory defaults.

37
New cards

Switch Virtual Interface (SVI)

A virtual Layer 2 switch interface (e.g., interface vlan 1) configured to allow remote IPv4/IPv6 management.

38
New cards

no shutdown

The command required to administratively enable/turn on an interface or SVI.

39
New cards

Default Gateway

The local router IP address that allows end hosts and switches to communicate beyond their local network.

40
New cards

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.

41
New cards

line console 0 & line vty 0 15

he specific line configuration modes used to configure physical console access and virtual terminal remote sessions.

42
New cards

login

The line command required to enforce password authentication when connecting to a console or VTY line

43
New cards

hostname

The exact global configuration command used to assign a unique device name.

44
New cards

configure terminal (conf t)

The command used to move from Privileged EXEC mode into Global Configuration mode.

45
New cards

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).

46
New cards

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).

47
New cards

Network Media

The physical transmission channels: copper (electrical pulses), fiber-optic (light pulses), and wireless (radio waves).

48
New cards

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)

49
New cards

Line Configuration Sequences

Remember that configuring a console or VTY password requires the login command right after the password to actually activate authentication.

50
New cards

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