M11: Build Small Cisco Network

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

1/17

flashcard set

Earn XP

Description and Tags

M11 Cisco Devices: Build a simple computer network using Cisco devices.

Last updated 11:56 AM on 4/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

18 Terms

1
New cards

VTY

The Virtual terminal lines you use for remote access (Telnet/SSH)

2
New cards

Switch Virtual Interface

It is a virtual Layer 3 interface. It is used for management only on Layer 2 switches. It is assigned an IP address, subnet mask, and usually a default gateway.

3
New cards

VLAN 1

It is the default SVI on basic switches.

4
New cards

passphrase

Is a sequence of words or a long string of characters used for authentication, offering stronger security than a traditional password.

5
New cards

2 Main ways a Network Devices can be accessed

  1. Locally - using the console port

  2. Remotely - using Telnet or SSH over the network

6
New cards

SSH

Is the preferred way of accessing network devices remotely because it encrypts usernames and passwords, while Telnet sends them in plaintext

7
New cards

show running-config

Use this command to see console and VTY passwords in plaintext unless encryption is enabled. In short use this command to verify configuration.

8
New cards

Console access

Can be secured with line console 0

9
New cards

Remote access

Can be secured with line vty 0 15

10
New cards

SSH preferred

Use command transport input ssh

11
New cards

transport input ssh

Commands that blocks Telnet

12
New cards

login local

Commands that forces the switch to use the local username database

13
New cards

show ip ssh

It verify SSH status

14
New cards

crypto key generate rsa

it enables SSH

15
New cards

username admin secret password

This configure local user authentication. SSH requires local username and secret. This creates a secure, encrypted password.

16
New cards

ip damain-name (name)

To configure the domain name. SSH requires a hostname + domain name to generate RSA keys.

17
New cards

crypto key generate rsa

This step enables SSH automatically. It generates RSA key pair

18
New cards

ip ssh version 2

This ensures only SSHv2 is allowed. It avoid using version 1 which has vulnerabilities.