mirror of https://github.com/CrimsonTome/tldr.git
20 lines
244 B
Markdown
20 lines
244 B
Markdown
|
# 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}}`
|