From fe3154287edb1c9c9d750922a400f51d9a75f450 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20K=C3=BCthe?= Date: Thu, 13 Jul 2023 12:38:01 +0000 Subject: [PATCH] birdc, fastd: remove double colon; babeld, bird, birdc, fastd, pystun3, stun: add German translation (#10351) * birdc, fastd: remove double colon; babeld, bird, birdc, fastd, pystun3, stun: add German translation --- pages.de/common/babeld.md | 24 ++++++++++++++++++++++++ pages.de/common/bird.md | 13 +++++++++++++ pages.de/common/birdc.md | 37 +++++++++++++++++++++++++++++++++++++ pages.de/common/fastd.md | 29 +++++++++++++++++++++++++++++ pages.de/common/pystun3.md | 16 ++++++++++++++++ pages.de/common/stun.md | 12 ++++++++++++ pages/common/birdc.md | 4 ++-- pages/common/fastd.md | 2 +- 8 files changed, 134 insertions(+), 3 deletions(-) create mode 100644 pages.de/common/babeld.md create mode 100644 pages.de/common/bird.md create mode 100644 pages.de/common/birdc.md create mode 100644 pages.de/common/fastd.md create mode 100644 pages.de/common/pystun3.md create mode 100644 pages.de/common/stun.md diff --git a/pages.de/common/babeld.md b/pages.de/common/babeld.md new file mode 100644 index 000000000..c359ad2a1 --- /dev/null +++ b/pages.de/common/babeld.md @@ -0,0 +1,24 @@ +# babeld + +> Routing-Daemon für Babel, der Firewall-ähnliche Filter benutzt. +> Weitere Informationen: . + +- Starte `babeld` mit einer bestimmten Konfigurationsdatei: + +`babeld -c {{pfad/zu/babeld.conf}}` + +- Starte `babeld` mit mehreren Konfigurationsdateien (in der Reihenfolge des Einlesens): + +`babeld -c {{pfad/zu/ports.conf}} -c {{pfad/zu/filters.conf}} -c {{pfad/zu/interfaces.conf}}` + +- Starte `babeld` als Daemon: + +`babeld -D` + +- Starte `babeld` und übergib einen Konfigurationsbefehl: + +`babeld -C {{'redistribute metric 256'}}` + +- Starte `babeld` und gib an, auf welchen Schnittstellen gearbeitet werden soll: + +`babeld {{eth0}} {{eth1}} {{wlan0}}` diff --git a/pages.de/common/bird.md b/pages.de/common/bird.md new file mode 100644 index 000000000..fd808b203 --- /dev/null +++ b/pages.de/common/bird.md @@ -0,0 +1,13 @@ +# bird + +> BIRD Internet Routing Daemon. +> Routing-Daemon mit Unterstützung für BGP, OSPF, Babel und weitere. +> Weitere Informationen: . + +- Starte `bird` mit einer bestimmten Konfigurationsdatei: + +`bird -c {{pfad/zu/bird.conf}}` + +- Starte `bird` als spezifischer Benutzer und Gruppe: + +`bird -u {{benutzername}} -g {{gruppe}}` diff --git a/pages.de/common/birdc.md b/pages.de/common/birdc.md new file mode 100644 index 000000000..1e584f80e --- /dev/null +++ b/pages.de/common/birdc.md @@ -0,0 +1,37 @@ +# birdc + +> Bird remote control. +> Kommandozeilenwerkzeug zum Abrufen von Informationen wie Routen von bird und zur Durchführung von Konfigurationen während der Laufzeit. +> Weitere Informationen: . + +- Öffne die remote control Konsole: + +`birdc` + +- Lade die Konfiguration neu, ohne Bird neu zu starten: + +`birdc configure` + +- Zeige den aktuellen Status von Bird an: + +`birdc show status` + +- Zeige alle konfigurierten Protokolle an: + +`birdc show protocols` + +- Zeige alle Details zu einem Protokoll an: + +`birdc show protocols {{upstream1}} all` + +- Zeige alle Routen an, die eine bestimmte AS-Nummer enthalten: + +`birdc "show route where bgp_path ~ [{{4242120045}}]"` + +- Zeige alle besten Routen an: + +`birdc show route primary` + +- Zeige alle Details zu allen Routen von einem bestimmten Präfix an: + +`birdc show route for {{fd00:/8}} all` diff --git a/pages.de/common/fastd.md b/pages.de/common/fastd.md new file mode 100644 index 000000000..e51830a26 --- /dev/null +++ b/pages.de/common/fastd.md @@ -0,0 +1,29 @@ +# fastd + +> VPN daemon. +> Arbeitet auf Schicht 2 oder Schicht 3, unterstützt verschiedene Verschlüsselungsmethoden, wird von Freifunk verwendet. +> Weitere Informationen: . + +- Starte `fastd` mit einer bestimmten Konfigurationsdatei: + +`fastd --config {{pfad/zu/fastd.conf}}` + +- Starte einen Schicht-3-VPN mit einer MTU von 1400 und lade den Rest der Konfigurationsparameter aus einer Datei: + +`fastd --mode {{tap}} --mtu {{1400}} --config {{pfad/zu/fastd.conf}}` + +- Validiere eine Konfigurationsdatei: + +`fastd --verify-config --config {{pfad/zu/fastd.conf}}` + +- Generiere einen neuen Schlüssel: + +`fastd --generate-key` + +- Zeige den öffentlichen Schlüssel zu einem privaten Schlüssel in einer Konfigurationsdatei an: + +`fastd --show-key --config {{pfad/zu/fastd.conf}}` + +- Zeige die aktuelle Version an: + +`fastd -v` diff --git a/pages.de/common/pystun3.md b/pages.de/common/pystun3.md new file mode 100644 index 000000000..cab5503c8 --- /dev/null +++ b/pages.de/common/pystun3.md @@ -0,0 +1,16 @@ +# pystun3 + +> Classic STUN-Client, geschrieben in Python. +> Weitere Informationen: . + +- Stelle eine STUN-Anfrage: + +`pystun3` + +- Stelle eine STUN-Anfrage und spezifiziere den STUN-Server: + +`pystun3 --stun-host {{stun.1und1.de}}` + +- Stelle eine STUN-Anfrage und spezifiziere den Quellport: + +`pystun3 --source-port {{7932}}` diff --git a/pages.de/common/stun.md b/pages.de/common/stun.md new file mode 100644 index 000000000..b81d4403f --- /dev/null +++ b/pages.de/common/stun.md @@ -0,0 +1,12 @@ +# stun + +> Classic STUN-Client. +> Weitere Informationen: . + +- Stelle eine STUN-Anfrage: + +`stun {{stun.1und1.de}}` + +- Stelle eine STUN-Anfrage und spezifiziere den Quellport: + +`stun {{stun.1und1.de}} -p {{4302}}` diff --git a/pages/common/birdc.md b/pages/common/birdc.md index 10fe38511..121f2373f 100644 --- a/pages/common/birdc.md +++ b/pages/common/birdc.md @@ -4,7 +4,7 @@ > Command tool to retrieve information like routes from bird and perform configurations during runtime. > More information: . -- Open the remote control console:: +- Open the remote control console: `birdc` @@ -16,7 +16,7 @@ `birdc show status` -- Show all active protocols: +- Show all configured protocols: `birdc show protocols` diff --git a/pages/common/fastd.md b/pages/common/fastd.md index e4198533a..bbf9915ac 100644 --- a/pages/common/fastd.md +++ b/pages/common/fastd.md @@ -24,6 +24,6 @@ `fastd --show-key --config {{path/to/fastd.conf}}` -- Show the current version:: +- Show the current version: `fastd -v`