• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/29

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

29 Cards in this Set

  • Front
  • Back

Unshielded Twiste Pair

Contains four wires that can transmit and receive data.

Layer 1 (Physical)

Anything that moves data from one system to another, such as copper, cabling, fiber optics, and even radio waves.


Network Interface Card (Layer 1)

Serves as the interface between the PC and Network. This allows each system with a unique identifier AKA the MAC Address: 00-40-05-60-7D-49

FF-FF-FF-FF-FF

MAC Broadcast address.

Data Link Layer (Layer 2)

Any device that deals with a MAC address. The only layer that has sublayers.

Logic Link Control (LLC) (Sublayer)

Aspect of the NIC that talks to the OS, places data from the software into frames and creates the CRC on each frame.

Meada Access Control (Sublayer)

It remembers the NIC's own MAC address and attaches MAC addresses to the frames. It also ensures that the frames, now complete with their MAC Address, are then sent along the network cabling.

Genereic Frame (Left to Right)

Recipient's MAC Address, Senders MAC Address, Data, Frame Check Sequence (FCS)

Large Networks

Large networks need a logical addressing method, like a postal code or telephone numbering scheme, that ignores the hardware and enables you to break up the entire large network into smaller networks called subnets.

Network Protocol

It creates a unique identifier for each system, and also creates a set of communication rules for issues like how to handle data chopped up into multiple packets and how to ensure those packets get from one subnet to another

Network Layer (Layer 3)

Packets get created and addressed so they can go from one network to another. The last layer that deals directly with hardware.

TCP/IP (Transmission Control Protocol/Internet Protocol)

The most famous protocol.

Internet Protocol (IP)

The primary logical addressing protocol for TCP/IP. It makes sure that a piece of data gets to where it needs to go on the network. It does this by giving each device on the network a unique numeric identifier called an IP Address.

IP Address

Also known as the logical address to distinguish it from the physical address. Stored in the system's software. T Uses a dotted decimal notation based on 4 8 bit numbers ranging from 0-255.

Routers

They connect each of the subnets. They use the IP address to forward data. This enables networks to connect accross data lines that don't use Ethernet.

TCP/IP Data Transmission

The data must be wrapped up in two distinct containers. A frame of some type enables the data to move from one device to another. Inside the frame is a packet.

Packet

Inside the frame is both an IP-specific container that enables routers to determine where to send data - regardless of the physical connection type - and the data itself.


(Destination IP Address, Source IP Address, Data)

Transport Layer (Layer 4)

It breaks up the data into chunks. It's the assembler/dissasembler software. It also initializes requests for packets that were not received in good order.

The Session Layer (Layer 5)

Handles all the sessions for a system. It initiates sessions, accepts incoming sessions, and opens and closes existing sessions. The Session layer also keeps track of computer naming conventions, such as calling your computer SYSTEM01 or some other type of name that makes more sense.

The Presentation Layer (Layer 6)

Handles the conversion of data into formats that are readable by the system. The least important, and least used.

The Application Layer (Layer 7)

Refers to the code built into all operating systems that enables network aware apps.

Application Programming Interfaces (APIs)

Programmers use these to make their programs network aware. They provide a standard way for programmers to enhance or extend an application's capabilities.

Link Layer (TCP/IP)

Cabling, hubs, physical addresses and NICs. Any part of the network that deals with complete frames is in the link layer. The moment the frame information is stripped away from an IP Packet, we move to the Internet Layer.

Internet Layer (TCP/IP)

Any device or protocol that deals with pure IP Packtes - getting an IP Packet to its destination - sits in the internet layer.

Transport Layer (TCP/IP)

Connection Oriented vs Connection Less. The transport layer deals with segments.


Connection Oriented

Transmission Control Protocol (TCP)


( Destination Port, Source Port, Sequence #, Checksum, Flags, Acknowlegment, Data )

Connectionless Oriented

User Datagram Protocol (UDP)


( Destination Port, Source Port, Sequence #, Checksum,Data )

The Application Layer

Every application must know how how to initiate, control, and disconnect from a remote system.

TCP/IP Model

The application layer programs the data. The Transport Layer breaks the data into chunks, putting them into TCP segments, and UDP datagrams. The Internet Layer adds the IP addressing, and creates the IP Packets. The LInk Layer wraps the IP packet into a frame, with the MAC address information and a frame check sequence (FCS)