Old - Domain 2: Telecommunications and Network Security Flashcards
OSI model
A network model with seven layers: physical, data link, network, transport, session, presentation, and application.
TCP/IP model
A simpler network model with four layers: network access, Internet, transport, and application.
Packet-switched network
A form of networking where bandwidth is shared and data is carried in units called packets.
Switch
A layer 2 device that carries traffic on one Local Area Network, based on Media Access Control (MAC) addresses.
Router
A layer 3 device that routes traffic from one LAN to another, based on IP addresses.
Packet filter and stateful firewalls
Devices that filter traffic based on OSI Layer 3 (IP addresses) and Layer 4 (ports).
Carrier Sense Multiple Access (CSMA)
A method used by Ethernet networks to allow shared usage of a baseband (one-channel) network and avoid collisions (multiple interfering signals).
Simplex communication
One way communication, like a car radio tuned to a music station.
Half-duplex communication
Communication that sends or receives at one time only (not simultaneously), like a walkie-talkie.
Full-duplex communication
Communication that sends and receives simultaneously, like two people having a face-to-face conversation.
Baseband networks
Networks that have one channel and can send only one signal at a time. (Like ethernet networks)
100baseT UTP cable
100 megabit, baseband, and twisted pair cable for ethernet networks.
Broadband networks
Have multiple channels and can send multiple signals at a time, like cable TV.
Analog communication
Communication like what our ears hear, a continuous wave of information. (such as the original phone networks or vinyl record)
Digital communication
Communication that is transferred in bits: ones and zeroes. (such as CD, or VOIP)
Metropolitan Area Network (MAN)
Network that is typically confined to a city, Zip Code, campus, or office park.
Local Area Network (LAN)
Network that is typically confined to a building or area within a building.
Wide Area Network (WAN)
Network that typically covers cities, states, or countries.
Global Area Network (GAN)
Network that is a global collection of WANs. (such as the US Dept of Defense global network)
Personal Area Network (PAN)
Network with a range of 100 meters or less.
Internet
A global collection of peered networks running TCP/IP, providing best-effort service.
Intranet
A privately owned network running TCP/IP, such as a company network.
Extranet
A connection between private Intranets, such as connections to business partners.
Circuit-switched networks
A dedicated circuit or channel (portion of a circuit) between two nodes. Used to provide dedicated bandwidth to point-to-point connections, such as a T1 connecting two offices.
Disadvantage of circuit switched networks?
Once a channel or circuit is connected, it is dedicated to that purpose, even while no data is being transferred.
Packet-switched networks
Designed to address issues with circuit-switched networks, as well as handle network failures more robustly. Designed to make unused bandwidth available for other connections.
ARPAnet
Predecessor of the Internet. Created out of research done in the 1960s by the US Defense Advanced Research Projects Agency (DARPA).
Quality of Service (QoS)
Used in packet-switched networks to give specific traffic precedence over other traffic. (often applied to VoIP traffic)
Network model
A description of how a network protocol suite operates, such as the OSI model or TCP/IP model.
Network stack
A network protocol suite programmed in software or hardware. (TCP/IP)
What network model do most systems now use?
TCP/IP Model
X.200: Information Technology - Open Systems Interconnection - Basic Reference Model
Formal name for OSI model.
Name the 2 sub-layes that the Data Link Layer is dividing into.
Media Access Control (MAC) and Logical Link Control (LLC)
OSI - Data Link Layer - MAC Layer
Transfers data to and from the physical layer. Touches layer 1.
OSI - Data Link Layer - LLC layer
Handles LAN communications. Touches layer 3.
OSI - Physical Layer (Layer 1)
Describes unites of data such as bits represented by energy and the medium used to carry them.
OSI - Data Link Layer (Layer 2)
Handles access to the physical layer as well as local area network communication.
Layer 1 devices
Hubs and repeaters.
Layer 2 devices
Switches and bridges.
OSI - Network Layer (Layer 3)
Describes routing: moving data from a system on one LAN to a system on another.
Layer 3 devices
Routers.
Layer 3 protocols
IPv4 and IPv6
OSI - Transport Layer (Layer 4)
handles packet sequencing, flow control, and error detection.
Layer 4 protocols
TCP & UDP
OSI - Session (Layer 5)
Manages sessions, which provide maintenance on connections.
Good way to remember Session layer.
Connections between applications.
Layer 5 example.
Mounting a network share. Used remote procedure calls (RPCs), which exist at the session layer.
OSI - Presentation Layer (Layer 6)
Presents data to the application (and user) in a comprehensible way.
Layer 6 concepts include what?
Data conversions, character sets such as ASCII, and image formats such as GIF or TIFF.
OSI - Application (Layer 7)
This is where you interface with your computer application.
Layer 7 examples.
Web browser, word processor, and instant messenger client.
Layer 7 protocols.
Telnet and FTP.
Please Do Not Throw Sausage Pizza Away
Mnemonic to help remember layers of OSI model.
TCP/IP was created by?
US Defense Advanced Research Projects Agency in the 1970s
Internet Protocol Suite
Formal name for TCP/IP model.
TCP/IP - Network Access Layer
Combines Layer 1 and Layer 2 of the OSI model.
TCP/IP - Internet Layer
Aligns with Layer 3 of the OSI model.
TCP/IP - Host-to-Host Transport Layer - Sometimes referred to as Host-to-Host or Transport alone.
Aligns with Layer 4 of the OSI model. Connects the Internet Layer to the Application Layer.
TCP/IP - Application Layer
Combines Layers 5 through 7 of the OSI model.
TCP/IP Application Layer protocol examples.
SSH, Telnet, and FTP.
Encapsulation
Takes information from a higher layer and adds a header to it, treating the higher layer information as data.
Protocol Data Unit (PDU) examples
Data, segments, packets, frames, and bits.
Demultiplexing
Sometimes called de-encapsulation, is the reverse of encapsulation.
MAC addresses
Historically 48 bits long. The first 24 bits form the Organizationally Unique Identifier (OUI), and the last 24 bits form a serial number (formally called an extension identifier)
EUI-64 MAC addresses
Created by IEEE. The OUI is still 24 bits, but the serial number is 40 bits. IPv6 autoconfiguration is compatible with this as well as conventional MAC addresses.
IPv4
Fundamental protocol of the Internet, designed in the 1970s to support packet-switched networking for DARPA. Used for ARPAnet, which later became the Internet.
IPv4 Header fields?
20 bytes long (with no options), and contains the following key fields:
- Version - IP version (4 for IPv4)
- IHL - Length of IP header
- Type of Service - Sets the precedence of the packet.
- Identification, Flags, and Offset - Used for IP fragmentation.
- Time to Live - To end routing loops.
- Protocol - Embedded protocol (TCP, UDP, etc)
- Source and Destination Address
- Options and Padding (optional)
IP fragmentation
If a packet exceeds the Maximum Transmission Unit (MTU) of a network, a router along the path may fragment it.
Maximum Transmission Unit (MTU)
Maximum PDU size on a network.
Typical MTU size for IP packet?
1500 bytes