cheat sheet Flashcards

(25 cards)

1
Q

layer 7

A

Name
Function
Data Unit
Devices Protocols/Examples
Application
User interface, network services Data Application software HTTP, FTP, SMTP, DNS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

layer 6

A

Name
Function
Data Unit
Devices Protocols/Examples
6
Presentation
Data format, encryption, compression Data — JPEG, SSL/TLS, MPEG

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

layer 5

A

Name
Function
Data Unit
Devices Protocols/Examples
5 Session Session management (open, maintain, close) Data — NetBIOS, RPC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

layer 4

A

Name
Function
Data Unit
Devices Protocols/Examples
4 Transport Reliable delivery, flow control, ports Segment — TCP, UDP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

layer 3

A

Name
Function
Data Unit
Devices Protocols/Examples

3 Network Routing, logical addressing (IP) Packet Router IP, ICMP, OSPF

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

layer 2

A

Name
Function
Data Unit
Devices Protocols/Examples

2 Data Link MAC addressing, local delivery Frame Switch, Bridge, NIC Ethernet, PPP, AR

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

layer 1

A

Name
Function
Data Unit
Devices Protocols/Examples
1 Physical Transmit bits over media Bits Hub, Cable, Repeater Fiber, RJ45, Wireless, DSL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Encapsulation Order (Sending Data)

A

Application → Transport → Network → Data Link → Physical

App generates data

Transport adds port info (TCP/UDP segment)

Network adds IP address (packet)

Data Link adds MAC address (frame)

Physical sends bits over wire

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Decapsulation Order (Receiving Data)

A

Physical → Data Link → Network → Transport → Application

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

TCP vs. UDP at Layer 4

A

Feature TCP UDP
Connection Yes (3-way handshake) No
Reliability Reliable, ordered Unreliable, unordered
Speed Slower Faster
Use Case Web, Email, File Transfer Streaming, DNS, VoIP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Devices at Each Layer

A

Layer Devices
1 Hub, Cable, Repeater
2 Switch, Bridge, NIC
3 Router
4–7 Software (firewalls, apps, OS services)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Common Protocols Per Layer

A

Layer Protocols/Examples
7 HTTP, FTP, SMTP, DNS
6 SSL, TLS, JPEG, ASCII
5 NetBIOS, RPC
4 TCP, UDP
3 IP, ICMP, OSPF, EIGRP
2 Ethernet, ARP, PPP
1 Wi-Fi, Fiber, DSL, Coax, RJ45

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is Cisco IOS?

A

Cisco IOS stands for Internetwork Operating System.

It is the software that runs on Cisco routers and switches.

Allows users to configure, monitor, and troubleshoot network devices using a Command Line Interface (CLI).

IOS is stored in Flash memory, loaded into RAM when the device boots.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Ways to Connect to a Cisco Device with console, ssh, telnet, aux

A

Connection Type Description When It’s Used
Console Direct cable connection to the device First-time setup
SSH Secure remote connection over a network Preferred for remote access
Telnet Unsecure remote access (clear-text) Legacy or test environments
AUX Access via modem connection Rarely used today

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

IOS User Modes and Prompts:
User EXEC mode
Privileged EXEC

A

Mode Name:
Prompt Example:
What You Can Do:
How to Enter:
User EXEC mode
Router>
Basic checks, limited commands Just press Enter
🔑 Use exit to go back one level, and end or Ctrl+Z to return to EXEC mode.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

IOS User Modes and Prompts:
Privileged EXEC

A

Mode Name:
Prompt Example:
What You Can Do:
How to Enter:

Router#
All “show” commands, debug, etc. Type enable
🔑 Use exit to go back one level, and end or Ctrl+Z to return to EXEC mode.

17
Q

IOS User Modes and Prompts:
Global Configuration

A

Mode Name:
Prompt Example:
What You Can Do:
How to Enter:

Router(config)#
Make system-wide config changes configure terminal
🔑 Use exit to go back one level, and end or Ctrl+Z to return to EXEC mode.

18
Q

IOS User Modes and Prompts:
Interface Configuration

A

Mode Name:
Prompt Example:
What You Can Do:
How to Enter:

Router(config-if)#
Configure an interface
interface Gig0/0 (for example)
🔑 Use exit to go back one level, and end or Ctrl+Z to return to EXEC mode.

19
Q

Basic Navigation & Help Commands
enable
disable
configure terminal
exit
end or Ctrl+Z
show ?
show running-config
show startup-config

A

Command What It Does
enable Enter Privileged EXEC mode
disable Return to User EXEC mode
configure terminal Enter Global Config mode
exit Exit the current mode
end or Ctrl+Z Exit to EXEC mode
show ? See available commands
show running-config Show current (active) settings
show startup-config Show saved config (in NVRAM)

🧠 Tip: Use the Tab key to auto-complete commands. For example: conf t → configure terminal.

20
Q

how to Manage Configurations?
Running Configuration
Startup Configuration

A

Running Configuration Temporary config stored in RAM. Lost when the device is rebooted.

Startup Configuration Saved config stored in NVRAM. Loaded when the device restarts.

21
Q

To save configuration permanently, use:

A

copy running-config startup-config

22
Q

To erase saved configuration (startup):

A

erase startup-config

23
Q

To reboot the device after erasing:

24
Q

File System & Memory Terms of ios:Flash,NVRAM,RAM,ROM

A

Flash – Stores the IOS image file.

NVRAM – Stores the startup configuration.

RAM – Used for running configuration and buffers.

ROM – Contains bootstrap program & ROMMON mode.

25