1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-10 18:55:41 +02:00
tldr/pages.pl/common/arp.md

20 lines
244 B
Markdown
Raw Normal View History

2020-04-15 17:31:34 +02:00
# 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}}`