tldr/pages/linux/arp.md

16 lines
188 B
Markdown
Raw Normal View History

2015-12-30 02:33:00 +00:00
# arp
2016-01-21 11:56:22 +00:00
> Show and manipulate your system's ARP cache.
2015-12-30 02:33:00 +00:00
2016-01-21 11:56:22 +00:00
- Show current arp table:
2015-12-30 02:33:00 +00:00
`arp`
2016-01-21 11:56:22 +00:00
- Delete an entry:
2015-12-30 02:33:00 +00:00
`arp -d {{address}}`
2016-01-21 11:56:22 +00:00
- Create an entry:
2015-12-30 02:33:00 +00:00
`arp -s {{address}} {{mac address}}`