1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/arp.md

20 lines
244 B
Markdown
Raw Normal View History

2015-12-29 20:33:00 -06:00
# arp
2016-01-21 12:56:22 +01:00
> Show and manipulate your system's ARP cache.
2015-12-29 20:33:00 -06:00
2016-01-21 12:56:22 +01:00
- Show current arp table:
2015-12-29 20:33:00 -06:00
`arp -a`
2015-12-29 20:33:00 -06:00
- Clear the entire cache:
`sudo arp -a -d`
- Delete a specific entry:
2015-12-29 20:33:00 -06:00
`arp -d {{address}}`
2016-01-21 12:56:22 +01:00
- Create an entry:
2015-12-29 20:33:00 -06:00
`arp -s {{address}} {{mac_address}}`