Vault sync: 2021-11-03 23:41:47

This commit is contained in:
Nick Leeman 2021-11-03 23:41:47 +01:00
parent 0f83b70b6f
commit 68692883b1
3 changed files with 16 additions and 5 deletions

4
.obsidian/workspace vendored
View File

@ -88,6 +88,7 @@
"active": "bc6e8ad9aa0f44c3", "active": "bc6e8ad9aa0f44c3",
"lastOpenFiles": [ "lastOpenFiles": [
"School/Analyse/Layers/2. Datalink Layer.md", "School/Analyse/Layers/2. Datalink Layer.md",
"School/Analyse/Network Types.md",
"School/Analyse/Images/distortion.png", "School/Analyse/Images/distortion.png",
"School/Analyse/Images/noise-signal.png", "School/Analyse/Images/noise-signal.png",
"README.md", "README.md",
@ -95,7 +96,6 @@
"School/Analyse/Layers/4. Transport Layer.md", "School/Analyse/Layers/4. Transport Layer.md",
"School/Analyse/Layers/1. Physical Layer.md", "School/Analyse/Layers/1. Physical Layer.md",
"School/Analyse/Comminucation Mediums.md", "School/Analyse/Comminucation Mediums.md",
"School/Analyse/Images/modulation-amplitude.png", "School/Analyse/Images/modulation-amplitude.png"
"School/Analyse/Images/modulation-phase-2.png"
] ]
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -5,7 +5,7 @@ The Data Link Layer also splits up packets into smaller chunks called a frame. T
Like the Network Layer the Data Link Layer is also responsible for flow control and error checking. Like the Network Layer the Data Link Layer is also responsible for flow control and error checking.
## Error detection ## Error Detection
Transmissions are not always error free. In case of an error, it should be detected and the message should be re transmitted (whenever possible) Transmissions are not always error free. In case of an error, it should be detected and the message should be re transmitted (whenever possible)
Detecting errors are handled by different algorithms: Detecting errors are handled by different algorithms:
@ -18,6 +18,17 @@ Data is split up in smaller chunks called frames. For each frame we add some ext
- Who is sender? - Who is sender?
- Who is receiver? - Who is receiver?
- Length of chunk - Length of chunk
- Type of chunk (normal message, error me) - Type of chunk (normal message, error message, control message)
- Error checking values (ex. CRC code) - Error checking values (ex. CRC code)
- Data and metadata are put in single message called frame - Data and metadata are put in single message called frame
## Ethernet Protocol
Ethernet is a protocol used at the data link layer of wired networks.
Ethernet uses specific hardware addresses to identify hosts on a network.
These 6-byte-integer addresses are names Medium Access Control (MAC Address)
Ethernet frame has the following format:
![[ethernet-frame.png]]
## Wireless networks