CCNA (Part 2)

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/58

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

59 Terms

1
New cards

Preamble

a series of alternating 1s and 0s at the beginning used for synchronization between sender and receiver. 7 bytes long (56 bits). Allows devices to synchronize their receiver clocks so they are ready to receive the packet

2
New cards

SFD (start frame delimiter)

a specific bit sequence indication the start of the frame, helping receivers identify and synchronize with incoming data. Length is 1 byte (8 bits) with a sequence of 10101011. Marks the end of the preamble.

3
New cards

Destination

specifies the intended recipient of the frame (usually MAC address), identifying the device or network adapter

4
New cards

Source

identifies the sender of the frame (usually MAC address), indicating the device or network adapter that transmitted it

5
New cards

MAC (Media Access Control)

6 byte (48-bit) hexadecimal address of the physical device

6
New cards

Type/length

specifies either the type of the payload data or the length of the payload, depending on the Ethernet frame type used.

7
New cards

1500 or less

type/length field value that signifies the LENGTH of the encapsulated packet (in bytes)

8
New cards

1536 or greater

type/length field value that signifies the TYPE of the encapsulated packet (usually IPv4 or IPv6), and the length is determined via other methods

9
New cards

0x0800

value used in type/length field to signify the type is IPv4

10
New cards

0x86DD

value used in type/length field to signify the type is IPv6

11
New cards

FCS (frame check sequence)

a field found in the Ethernet frame's trailer and is used for error checking, containing a value calculated based on the frame's contents to ensure its integrity during transmission. Uses the CRC (cyclic redundancy check) 4 bytes

12
New cards

CRC (cyclic redundancy check)

used in FCS. A type of error-checking code used to detect errors in the frame's data, ensuring data integrity during transmission

13
New cards

OUI (organizationally unique identifier)

the first 3 bytes or half of a MAC address. Assigned to the company making the device

14
New cards

Unicast frame

an Ethernet frame that is sent from one device to one specific destination device on a network

15
New cards

MAC address table

a database on a network switch that maps MAC addresses to the ports on which devices are connected, allowing the switch to forward frames to the correct destination

16
New cards

Dynamic MAC address

a MAC address that is automatically learned by a network device, such as a switch, and is not manually configured

17
New cards

Unknown unicast frame

an Ethernet frame that is addressed to a specific destination MAC address but cannot be forwarded by a switch because the switch does not have an entry for that MAC address in its MAC address table so it is flooded on all interfaces but the interface that the packet was received on

18
New cards

Known unicast frame

an Ethernet frame that is addressed to a specific destination MAC address and can be forwarded by a switch because the switch has an entry for that MAC address in its MAC address table

19
New cards

46 bytes

minimum payload packet size

20
New cards

Padding

added if the payload does not reach the minimum size (46 bytes). Represented in 0000s

21
New cards

IP packet

found on Ethernet frame and includes a source and destination IP address

22
New cards

ARP (Address resolution protocol)

protocol used in TCP/IP networks to map IP addresses to MAC addresses, allowing devices to communicate at the data link layer

23
New cards

ARP request

a broadcast sent to all host on the network that is used to find out the MAC address of the destination device. Uses FFFF.FFFF.FFFF as a placeholder for the unknown MAC address of the destination device

24
New cards

ARP reply

a unicast that is sent only to one host (host that sent the request) to discover the destinations MAC address

25
New cards

arp -a

command with option used in Windows, macOS, and Linux to display the ARP table. Include the Internet address(IP address), physical address(MAC address), and type (static or dynamic)

26
New cards

show arp

command used in privileged exec mode to show ARP table

27
New cards

show mac address-table

command to view the MAC address table on Cisco switch. Includes VLAN, MAC Address, Type (Static/Dynamic), and Ports(interface)

28
New cards

aging

refers to the process of removing entries from the table after a certain period of inactivity (5 minutes), ensuring that the table remains up to date with the device connected to the network

29
New cards

clear mac address-table dynamic

command to clear all dynamic mac addresses from mac address table

30
New cards

clear mac address-table dynamic address (mac address)

command to clear a specific dynamic mac address from mac address table

31
New cards

clear mac address-table dynamic interface (interface-id)

command to clear a specific interface from mac address table

32
New cards

32 bits (4 bytes)

length of IPv4 address

33
New cards

128 64 32 16 8 4 2 1

binary octet factors from left to right

34
New cards

0-127

first octet numeric range of IPv4 class A

35
New cards

128-191

first octet numeric range of IPv4 class B

36
New cards

192-223

first octet number range of IPv4 class C

37
New cards

224-239

first octet number range of IPv4 class D (multicast)

38
New cards

240-255

first octet number range of IPv4 class E (reserved for experimental uses)

39
New cards

loopback address

special IP addresses (127.0.0.0 to 127.255.255.255) reserved for a device to refer to itself, allowing testing of network functions without sending data over a physical network

40
New cards

/8

prefix length (network address) of IPv4 class A

41
New cards

/16

prefix length (network address) of IPv4 class B

42
New cards

/24

prefix length (network address) of IPv4 class C

43
New cards

2^n -2

the formula used to calculate the amount of addresses per IPv4 class where n is the length in bits of the host portion of the IPv4 address

44
New cards

Netmask

a 32-bit binary number used in IP networking to divide an IP address into network and host portions, helping routers determine the network to which an IP address belongs

45
New cards

255.0.0.0

IPv4 class A netmask

46
New cards

255.255.0.0

IPv4 class B netmask

47
New cards

255.255.255.0

IPv4 class C netmask

48
New cards

Network address

host portion of the address is all 0s and signifies the address of the entire network

49
New cards

Broadcast address

host portion of the address is all 1s and is used to send a broadcast to all devices on that network (255)

50
New cards

show ip interface brief

command on Cisco routers (privileged exec mode) that displays a summary of the IP addresses assigned to each interface, along with their status and protocol information (Interface, IP-Address, Ok?, Method, Status (layer 1), Protocol (layer 2)

51
New cards

status

shown in "show ip interface brief" command in Cisco routers and by default is administratively down (layer 1). This tells you if the interface is turned on or off

52
New cards

Protocol

shown in "show ip interface brief" command in Cisco routers (layer 2) tells you if the Ethernet is working properly

53
New cards

interface (interfacetype interface-ID)

command used in global configuration mode to bring you to the interface configuration mode

54
New cards

R1(config-if)#

prompt is Cisco routers that tells you are in interface configuration mode

55
New cards

ip address (ip-address)(subnetmask)

command in interface configuration mode that allows you to set the ip address and subnetmask of an interface on a router

56
New cards

no shutdown

command used in Cisco routers that turns on an interface from the default down

57
New cards

show interface (interface-ID)

command used in privileged exec mode that will show you are more detailed view of the specify interface ID

58
New cards

show interface description

command used in privileged exec mode that will show you all the interfaces status, protocol, and description within Cisco routers

59
New cards

description (description of interface)

command used in interface config mode that will allow you to create a description of the interface (this is optional)