Module 1.2 & 1.3 Flash Cards

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/84

encourage image

There's no tags or description

Looks like no tags are added yet.

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

No analytics yet

Send a link to your students to track their progress

85 Terms

1
New cards

What is full-duplex communication?

Communication where a device can send and receive data simultaneously

2
New cards

What is half-duplex communication?

Communication where a device can send or receive, but not both at the same time

3
New cards

What is another name for full-duplex communication?

Bidirectional communication

4
New cards

What is a major advantage of full-duplex communication?

It allows simultaneous transmission and reception

5
New cards

What happens to collisions in full-duplex mode?

Collisions do not occur

6
New cards

What type of communication can have collisions?

Half-duplex communication

7
New cards

What devices commonly used half-duplex communication?

Older devices such as hubs

8
New cards

What is microsegmentation?

Creating a network segment with a single device connected to each switch port

9
New cards

What happens to the collision domain on a full-duplex switch port?

There is no collision domain

10
New cards

What duplex mode is required by Gigabit Ethernet?

Full-duplex

11
New cards

What duplex mode is required by 10 Gigabit Ethernet?

Full-duplex

12
New cards

What happens to collision detection in full-duplex mode?

It is disabled

13
New cards

What command manually sets a switch port to full-duplex?

duplex full

14
New cards

What command manually sets a switch port speed to 100 Mbps?

speed 100

15
New cards

What are the default speed and duplex settings on many Cisco Catalyst switches?

Auto speed and auto duplex

16
New cards

What is auto-negotiation?

A process that allows devices to automatically determine compatible speed and duplex settings

17
New cards

What can happen when speed or duplex settings are mismatched?

Connectivity and performance problems

18
New cards

What is a best practice when connecting to known devices?

Manually configure compatible speed and duplex settings when appropriate

19
New cards

What duplex mode do fiber-optic ports typically use?

Full-duplex

20
New cards

What is Auto-MDIX?

A feature that automatically detects whether a straight-through or crossover cable is needed

21
New cards

What command enables Auto-MDIX?

mdix auto

22
New cards

What cable types can be used when Auto-MDIX is enabled?

Either straight-through or crossover

23
New cards

What settings should be used with Auto-MDIX for proper operation?

Speed and duplex should be set to auto

24
New cards

What is the traditional cable for a switch-to-switch connection without Auto-MDIX?

Crossover cable

25
New cards

What is the traditional cable for a switch-to-PC connection without Auto-MDIX?

Straight-through cable

26
New cards

What command displays interface status and statistics?

show interfaces

27
New cards

What command displays the startup configuration?

show startup-config

28
New cards

What command displays the running configuration?

show running-config

29
New cards

What command displays flash information?

show flash

30
New cards

What command displays hardware and software information?

show version

31
New cards

What command displays previously entered commands?

show history

32
New cards

What command displays IPv4 interface information?

show ip interface

33
New cards

What command displays IPv6 interface information?

show ipv6 interface

34
New cards

What command displays the MAC address table?

show mac address-table

35
New cards

What does show running-config display?

The configuration currently running on the switch

36
New cards

What does show startup-config display?

The configuration saved for use after a reboot

37
New cards

What does show interfaces display?

Interface status, configuration, statistics, and errors

38
New cards

What does up/up mean on a switch interface?

The physical interface and data link protocol are both operational

39
New cards

What does the first up in up/up represent?

The physical layer/interface

40
New cards

What does the second up in up/up represent?

The data link layer/line protocol

41
New cards

What does up/down indicate?

The physical connection is working but there is a Layer 2 problem

42
New cards

What does down/down usually indicate?

A physical connection or interface problem

43
New cards

What does administratively down mean?

The interface was manually disabled with the shutdown command

44
New cards

What command manually disables an interface?

shutdown

45
New cards

What command enables a disabled interface?

no shutdown

46
New cards

What are input errors?

The total errors received by an interface

47
New cards

What are runts?

Ethernet frames smaller than the 64-byte minimum

48
New cards

What are giants?

Ethernet frames larger than the maximum allowed frame size

49
New cards

What do CRC errors usually indicate?

A cable, media, connection, or interference problem

50
New cards

What should you check when seeing many CRC errors?

Check the cable, connections, and sources of electrical noise

51
New cards

What are output errors?

Errors that prevent successful transmission of data out of an interface

52
New cards

Are collisions normal on a half-duplex connection?

Yes

53
New cards

Should collisions occur on a properly configured full-duplex interface?

No

54
New cards

What is a late collision?

A collision occurring after 512 bits of a frame have been transmitted

55
New cards

What commonly causes late collisions?

Excessive cable length or a duplex mismatch

56
New cards

What should you check first when a switch interface is down?

Cables, connectors, and possible physical damage

57
New cards

What should you check if a switch interface is up but connectivity is poor?

Errors, noise, cable length/type, collisions, and duplex settings

58
New cards

What protocol does Telnet use?

TCP

59
New cards

What TCP port does Telnet use?

Port 23

60
New cards

Is Telnet encrypted?

No

61
New cards

How does Telnet transmit usernames and passwords?

In plaintext

62
New cards

Why is Telnet insecure?

Attackers can potentially capture usernames, passwords, and transmitted data

63
New cards

What is SSH?

Secure Shell, a protocol for secure remote management

64
New cards

What TCP port does SSH use?

Port 22

65
New cards

Is SSH encrypted?

Yes

66
New cards

What is the main advantage of SSH over Telnet?

SSH encrypts authentication and transmitted data

67
New cards

Which should be used for secure remote management, Telnet or SSH?

SSH

68
New cards

What does K9 in a Cisco IOS filename indicate?

The IOS supports cryptographic/encryption features

69
New cards

What command checks the Cisco IOS version?

show version

70
New cards

What command checks whether SSH is supported and enabled?

show ip ssh

71
New cards

What command configures the network domain name for SSH?

ip domain-name

72
New cards

What command generates RSA keys for SSH?

crypto key generate rsa

73
New cards

What does generating RSA keys do for SSH?

It enables the SSH server and creates the RSA key pair

74
New cards

What is an RSA key pair used for in SSH?

Providing cryptographic security for SSH connections

75
New cards

What command enables SSH version 2?

ip ssh version 2

76
New cards

Why should SSH version 2 be used instead of SSH version 1?

SSH version 1 has known security weaknesses

77
New cards

What command creates a local username and encrypted password?

username secret

78
New cards

What are VTY lines?

Virtual terminal lines used for remote CLI connections

79
New cards

What command enters VTY line configuration?

line vty 0 15

80
New cards

What command allows only SSH connections on VTY lines?

transport input ssh

81
New cards

What does login local do?

Uses the local username database to authenticate remote users

82
New cards

What command verifies the SSH version and configuration?

show ip ssh

83
New cards

What command displays active SSH connections?

show ssh

84
New cards

What does transport input ssh prevent?

Non-SSH remote connections such as Telnet

85
New cards

What is the difference between Telnet and SSH?

Telnet uses TCP 23 and plaintext; SSH uses TCP 22 and encryption