Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.77 KB

File metadata and controls

32 lines (22 loc) · 1.77 KB

[!NOTE] Chapter

TCP/IP

![[Pasted image 20260107112755.png]]

Layer counts change based on course.

Name What
Layer 1 Physical Layer Sends and receieves data over physical medium
Cables,connectors,link speeds
Copper,Fiber,Wireless,Antennas NICs
Layer 2 Local Network Layer Hop to Hop delivery on a local network
Uses MAC to identify interfaces
Ethernet and Wifi
Layer 3 Internet Layer End to End between hosts across networks
Ip to identify
Routers
IP and ICMP
Layer 4 Transport Layer End to End between service-service
Identify via ports
Runs on communicating hosts
UDP-TCP
Layer 5 (Layer 7 on OSI Model) Application layer Network comms to applications
Browsing web,mails,transferring files
HTTP/FTP/SMTP etc..

Encapsulation and Decapsulation

Every layer encapsulates data with a header.

![[Pasted image 20260107114305.png]]

![[Pasted image 20260107114331.png]]

Data + L4 Header = Segment (TCP) or Datagram (UDP) Segment/Datagram + L3 Header = Packet Packet + L2 Header = Frame

Payload is everything it encapsulated before > Packets payload is Segment/Datagram Frame is what is being sent over the wire

![[Pasted image 20260107114754.png]]