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.
|
2021-04-12 08:54:04 +02:00
|
|
|
> More information: <https://manned.org/arp>.
|
2015-12-29 20:33:00 -06:00
|
|
|
|
2021-03-31 12:56:05 +02:00
|
|
|
- Show the current ARP table:
|
2015-12-29 20:33:00 -06:00
|
|
|
|
2016-01-29 14:24:36 -05:00
|
|
|
`arp -a`
|
2015-12-29 20:33:00 -06:00
|
|
|
|
2016-01-29 14:24:36 -05:00
|
|
|
- Clear the entire cache:
|
|
|
|
|
|
|
|
`sudo arp -a -d`
|
|
|
|
|
|
|
|
- Delete a specific entry:
|
2015-12-29 20:33:00 -06:00
|
|
|
|
|
|
|
`arp -d {{address}}`
|
|
|
|
|
2021-03-31 12:56:05 +02:00
|
|
|
- Create an entry in the ARP table:
|
2015-12-29 20:33:00 -06:00
|
|
|
|
2018-10-29 12:14:25 +01:00
|
|
|
`arp -s {{address}} {{mac_address}}`
|