tldr/pages/common/arp.md

17 lines
266 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.
> More information: <https://manned.org/arp>.
2015-12-30 02:33:00 +00:00
2021-03-31 11:56:05 +01:00
- Show the current ARP table:
2015-12-30 02:33:00 +00:00
`arp -a`
2015-12-30 02:33:00 +00:00
- Delete a specific entry:
2015-12-30 02:33:00 +00:00
`arp -d {{address}}`
2021-03-31 11:56:05 +01:00
- Create an entry in the ARP table:
2015-12-30 02:33:00 +00:00
`arp -s {{address}} {{mac_address}}`