Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #200

Merged
merged 5 commits into from
Sep 9, 2024
Merged

Dev #200

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"hervorsehbare",
"Kommazahlen",
"Loadbalancer",
"Nachfolgerstation",
"Nachfrageoligopol",
"Netzwerktopologien",
"peaceiris",
"projektae",
"Skalierungsmethoden",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
title: "Netzwerktopologien"
date: 2024-08-30T11:26:22-06:00
draft: false
type: docs
description: "Netzwerktopologien sind die physische und logische Struktur eines Netzwerks."
---

| Topologie | Beschreibung | Schaubild |
| ------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------- |
| **Stern (Star)** | Von einem Sternmittelpunkt aus gehen sternförmig die Leitungen zu den Endpunkten. Zugriffssteuerung CSMA/CD. | ![Stern Bild](./stern.png) |
| **Erweiterter Stern (Extended Star)** | Der Endpunkt eines Sterns ist wiederum Mittelpunkt eines weiteren Sterns. Üblich sind bei LANs drei Ebenen. Standard in heutigen Verkabelungen. | ![Erweiterter Stern Bild](./stern_erweitert.png) |
| **Vollständige Masche (Complete Mesh)** | Jede Station ist mit jeder anderen verbunden. Sehr hohe Ausfallsicherheit durch sehr hohe Redundanz, aber sehr aufwendig. | ![Vollständige Masche Bild](./masche_voll.png) |
| **Unvollständige Masche (Incomplete Mesh)** | Alle wichtigen Stationen sind mehrfach mit anderen Stationen verbunden. Ausfallsichere Netze durch Redundanz. Ein erweiterter Stern mit Querverbindungen ergibt eine unvollständige Masche. | ![Unvollständige Masche Bild](./masche_unvoll.png) |
| **Zelle (Cell)** | Funkzellen decken bestimmte Bereiche mit Funkwellen ab, z.B. WLAN, Bluetooth oder Mobilfunk. Zugriffssteuerung CSMA/CA. | ![Zelle Bild](./zelle.png) |
| **Punkt-zu-Punkt (Point-to-Point, P2P)** | Verbindung zwischen zwei Stationen. | ![Punkt-zu-Punkt Bild](./p2p.png) |
| **Bus** | Alle Stationen sind parallel auf einer gemeinsamen Leitung. Heute nicht mehr üblich in LANs. Zugriffssteuerung CSMA/CD. | ![Bus Bild](./bus.png) |
| **Ring** | Jede Station hat eine Vorgängerstation und eine Nachfolgerstation. Daten werden nur in eine Richtung verschickt. Vorteile sind sichere Datenübertragung und berechenbare Wartezeit, bis gesendet werden darf. Nachteile sind ein schwieriger Aufbau und eine komplizierte Fehlersuche. Zugriffssteuerung über Token Passing. | ![Ring Bild](./ring.png) |

## Hinweis 🛈

Man unterscheidet:

- **Physische/Physikalische Topologie**: "Wie läuft die Verkabelung?"
- **Logische Topologie**: "Wie verläuft der Datenstrom?"

Die übliche CATx-RJ45-Ethernet-Verkabelung ist physikalisch immer ein Stern.
Wird jedoch ein "Hub" im Sternpunkt eingesetzt, erreicht jeder Teilnehmer jeden anderen Teilnehmer direkt über das gemeinsame Medium. Ein Hub im Sternpunkt erzeugt logisch eine Bus-Topologie.
Ein Switch im Sternpunkt erzeugt logisch pro Kommunikation eine Punkt-zu-Punkt-Topologie zwischen zwei Teilnehmern (außer bei Multicast/Broadcast-Verkehr). Da der Teilnehmer jedoch nicht fest mit einem zweiten Teilnehmer verbunden ist, spricht man eher von einer Sterntopologie. Hier stimmen physikalische und logische Klassifizierung überein.

## Erklärungsvideo 📹

{{< youtube Ukb2SGhGBDU >}}

## Links 🔗

[Wikipedia](<https://de.wikipedia.org/wiki/Topologie_(Rechnernetz)>)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/Fachinformatiker-Prufungsvorbereitung/Fachinformatiker-Pruefun

go 1.12

require github.com/imfing/hextra v0.7.3 // indirect
require github.com/imfing/hextra v0.8.2 // indirect
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
github.com/imfing/hextra v0.7.3 h1:dVGA1NTcWe+FaUMdrawEypPfrrmulq5NoK0we3nC330=
github.com/imfing/hextra v0.7.3/go.mod h1:cEfel3lU/bSx7lTE/+uuR4GJaphyOyiwNR3PTqFTXpI=
github.com/imfing/hextra v0.8.2 h1:/IykSIAywgKfhKUBgAW+dCCjrJWJNny4jr9qvdXfch0=
github.com/imfing/hextra v0.8.2/go.mod h1:cEfel3lU/bSx7lTE/+uuR4GJaphyOyiwNR3PTqFTXpI=
Loading