module 1 - networking

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

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 8:15 AM on 8/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

35 Terms

1
New cards

what is a network?

two or more computer systems linked by transmission medium, allowing them to exchange data

2
New cards

nodes

devices

3
New cards

links

communication pathways

4
New cards

intermediate nodes

perform forwarding to other nodes

5
New cards

end systems (hosts)

send & receive data traffic

6
New cards

transmission media

the physical or wireless communication channels

7
New cards

client-server networks

server makes resources available, client consumes services, centralized - LAN

8
New cards

peer 2 peer networks

hosts act as client & server, decentralized - WAN

9
New cards

LAN (Local Area Network)

network confined to one geographical location, nodes connected by cable or short wireless, owned by one org, home/residential

10
New cards

WAN (Wide Area Network)

network of networks connected by long-distance links

ex. main office → branch offices, enterprise networks → remote workers

11
New cards

Topology

physical or logical structure of a network

12
New cards

physical topology

placement of nodes, logistics of transmission media

ex. connected cables vs. connecting a switch

13
New cards

logical topology

flow of data through a network

14
New cards

half duplex

point → point links where nodes cannot simultaneously send and receive

15
New cards

full duplex

point → point links where nodes can simultaneously send and receive

16
New cards

star topology

each end point is connected to a central forwarding appliance, most widely used, single point of failure, LAN

17
New cards

Hub and spoke

same physcial layout as star topology, used in different context (WAN)

18
New cards

Full mesh topology

each device is connected to every other device, multiple routes incase nodes fail

impractical for most as it grows exponentially L=(n(n-1))/2

19
New cards

partial mesh topology

hybrid approach where the most important nodes are interconnected, good redundancy, more practical

20
New cards

bus topology

all nodes connect to a single trunk cable, connecting to nodes via drop cables and end nodes are terminators (absorb signal & prevent reflection), travels one node to the other, broken cable can break termination

21
New cards

ring topology

nodes connected to form a ‘ring’ where signals travel in one direction, each device acts as a repeater, one node malfunction disrupts communication

22
New cards

OSI (open system interconnection) model

for understanding network system components, separated hardware & software functions into seven layers

23
New cards

encapsulation

adding headers as data moves down stack of sender

24
New cards

decapsulation

removing headers as data moves up stack of receiver

25
New cards

OSI model: Layer 1 - physical

transmits BITs as signals over a transition medium (copper, fiber, wireless)

BITs → signal → media

devices: transceiver, repeater, hub, media converter

26
New cards

OSI model: Layer 2 - data link

controls how data is placed & received from media through framing which includes error detection

devices: network adpapter (NIC), bridge, switch, wireless access point (AP)

27
New cards

OSI model: Layer 3- network

moves data through internetwork

logical addressing, routing, path determination through IP packet

device: router

28
New cards

OSI model: Layer 4 - transport

manages end → end communication

segmentation, flow control, error control using multiplexing & ports

devices: advanced firewalls, intrusion detection systems (IDSs)

29
New cards

OSI model: Layer 5 - session

manages communication sessions (opens, closes, authentication, authorization)

30
New cards

OSI model: Layer 6 - presentation

translation, data compression, encryption (sending), decryption (receiving)

31
New cards

OSI model: Layer 7 - application

provides interface for software to exchange data; web browsing, email, file transfer

32
New cards

TCP (transmission control protocol) / IP (internet protocol) suite

OSI is perfect theoretically but internet was used with this which uses 4 of the 7 OSI layers

4 application (application & presentation), three transport (session & transport), two network, one data link (data link & physical)

33
New cards

How does a switch work in layer 2 of the OSI model?

Reader the header of the ethernet frame to find the destination MAC, then finds the port that leads to the destination and sends it

34
New cards

How does routing across networks work in layer 3 of the OSI model?

sender creates an IP packet and compares the IP destination to its own. it ends up being on a different network so the IP packet gets sent to the router and the receiver is connected vis intermediate nodes so data link protocol is used to send message to IP address

35
New cards

How does multiplexing & port numbers work in layer 4 of the OSI model?

it combines different data streams on same network at the same time using port numbers & addresses to keep data separate, delivers data to the correct application once received