mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-24 01:22:10 +02:00

* arp.md: add German translation * Update pages.de/common/arp.md Co-authored-by: pixel <pixel+github@chrissx.de> * Update pages.de/common/arp.md Co-authored-by: pixel <pixel+github@chrissx.de> * Update pages.de/common/arp.md Co-authored-by: pixel <pixel+github@chrissx.de> * Update pages.de/common/arp.md Co-authored-by: pixel <pixel+github@chrissx.de> * Update pages.de/common/arp.md Co-authored-by: pixel <pixel+github@chrissx.de> --------- Co-authored-by: pixel <pixel+github@chrissx.de>
20 lines
369 B
Markdown
20 lines
369 B
Markdown
# arp
|
|
|
|
> Den ARP Cache des Systems anzeigen und manipulieren.
|
|
> Weitere Informationen: <https://manned.org/arp>.
|
|
|
|
- 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}}`
|