mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
244 B
244 B
arp
Show and manipulate your system's ARP cache.
- Show current arp table:
arp -a
- Clear the entire cache:
sudo arp -a -d
- Delete a specific entry:
arp -d {{address}}
- Create an entry:
arp -s {{address}} {{mac address}}