Day 2 Flashcards

1
Q

OSI Model

refer to diagram 6-1 in student workbook

A
Application
Presentation
Session
Transport
Network 
Data link
Physical
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Application Layer (layer 7)

A

The interface between the user’s applications and the network when the user’s network-aware application requires network resources to accomplish a task.
Uses API’s

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

Presentation Layer (layer 6)

A

Responsible for presenting the data at the destination with the same meaning and appearance as it had at the source

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

Session Layer (Layer 5)

A

Sets up, coordinates, and terminates conversations, exchanges, and dialogues between devices across a network.
Sessions can be:
simplex: communications occur in only one direction
half-duplex: communications occur in two directions but not at the same time
full-duplex: communications occur in two directions simultaneously

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

transport layer (layer 4)

A

manages data delivery between systems or hosts

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

network layer (layer 3)

A

responsible for the logical addressing and routing of messages to their proper final destination.

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

data link layer (layer 2)

A

provides reliable method of transmitting data across the communication link.
Contains two sub layers:
LLC: Upper layer and handles error checking and flow control, and communicates with network layer
MAC: lower layer and is responsible for mapping between logical and physical addressing

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

physical layer (layer 1)

A

where communications between devices actually take place

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

Project 802

A

IEEE group/standard that defines how multiple computers can connect without interfering with one another

  1. 3 Ethernet LAN-CSMA/CD
  2. 5 Token Ring LAN
  3. 11 Wireless LAN (WLAN) & Mesh (Wi-Fi certification)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Protocols

A

rules that govern a convention or standard that enables data transfer between two computing endpoints

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

TCP/IP suite

A

most common suite in the world
developed by DOD
primarily operates in the client/server model
is routable

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

network adapter/network interface card

A

provides interface between a computer and the network medium

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

link lights

A

show status of the NIC:
green indicates a good connection
yellow means slow connection speeds
no light indicates a connection is not present

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

attenuation

A

the loss of signal intensity over distance

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

amplifier

A

a device that strengthens any noise, both intended noise and background noise

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

repeater

A

receives and regenerates the original and desired signal

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

hubs

A

multipoint repeaters that receive a digital signal, regenerate it, and then broadcast that signal to all connected ports

18
Q

switches

A

switches make decisions based on physical MAC addresses and only forward data through the appropriate port
(break up collision domains but not broadcast domains)

19
Q

routers

A

connects LAN’s and WAN’s.

determines the next network to which a packet is sent by scanning the destination IP address

20
Q

uplink port

A

device that electronically switches the transmit and receive wires eliminating the need for cross over cables.

21
Q

unicast addressing

A

sends traffic to a single host or destination

22
Q

multicast addressing

A

sends traffic to a group of hosts or recipients

23
Q

broadcast addressing

A

used to send traffic to everyone on a LAN

24
Q

anycast addressing

A

maps traffic to the nearest host providing a specific service

25
Q

MAC address

A

48 bit (6-byte) hex (physical) address burned into the NIC

26
Q

OUI

A

first half of the MAC address that identifies the manufacturer
a broadcast to all MAC addresses is FF:FF:FF:FF:FF:FF

27
Q

IPv4 address

A

4 octets
8 bits in an octet
0-255 in each octet

28
Q

subnet masks

A

identifies where the network part of the IP address stops and the host part begins

29
Q

Address resolution Protocol (ARP)

A

used to populate a hosts ARP cache when it knows the IP address of a computer in its network but not any MAC’s. The host sends a message to the IP address it knows and broadcasts it to all MAC’s. All of the hosts update their own ARP cache with the MAC that sent the message, and the intended IP host responds back to the host with its MAC.

30
Q

Reverse ARP

A

when a host knows a MAC address but not the IP address.

31
Q

classes of IP addresses

A

A 0-127 255.0.0.0 /8
B 128-191 255.255.0.0 /16
C 192-223 255.255.255.0 /24

32
Q

CIDR

A

denotes subnet mask and the size of the network

33
Q

subnetting

A

breaks larger networks into smaller networks, which contain fewer available host ID’s due to borrowing bits

34
Q

performing subnetting

A
refer to info sheet 6-3 in student workbook 
formula's
number of subnets:
2^n  n= borrowed bits
number of hosts:
2^h-2   h=host bits
35
Q

Private IP ranges

A

A 10.0.0.0-10.255.255.255
B 172.16.0.0-172.31.255.255
C 192.168.0.0-192.168.255.255

36
Q

Automatic Private IP addressing (APIPA)

A

when a machine cannot reach a DHCP server, it assigns itself its own address so that it can communicate within its own network.
Range:
169.254.0.0-169.254.255.255

37
Q

loopback address

A

used to test a NIC’s ability to send or receive traffic

127.0.0.1

38
Q

ipconfig

A

displays IP configurations

39
Q

ifconfig

A

used in UNIX to display and change parameters such as IP addresses

40
Q

supernetting

A

opposite of subnetting, network bits are taken back and utilized as host bits