From 9788ecc8b008fa68896e331ff7f2f0da937da71f Mon Sep 17 00:00:00 2001 From: Slotharmy <76694564+Slotharmy@users.noreply.github.com> Date: Tue, 16 May 2023 14:41:21 +0200 Subject: [PATCH] arp: add German translation (#9998) * arp.md: add German translation * Update pages.de/common/arp.md Co-authored-by: pixel * Update pages.de/common/arp.md Co-authored-by: pixel * Update pages.de/common/arp.md Co-authored-by: pixel * Update pages.de/common/arp.md Co-authored-by: pixel * Update pages.de/common/arp.md Co-authored-by: pixel --------- Co-authored-by: pixel --- pages.de/common/arp.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages.de/common/arp.md diff --git a/pages.de/common/arp.md b/pages.de/common/arp.md new file mode 100644 index 000000000..2d7b3d5e3 --- /dev/null +++ b/pages.de/common/arp.md @@ -0,0 +1,20 @@ +# arp + +> Den ARP Cache des Systems anzeigen und manipulieren. +> Weitere Informationen: . + +- Zeige die aktuelle ARP Tabelle an: + +`arp -a` + +- Leere den gesamten Cache: + +`sudo arp -a -d` + +- Lösche einen spezifischen Eintrag in der Tabelle: + +`arp -d {{addresse}}` + +- Erstelle einen Eintrag in der ARP Tabelle: + +`arp -s {{adresse}} {{mac_adresse}}`