1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-01 23:17:56 +01:00
tldr/pages/common/arp.md
2016-01-31 21:05:33 -05:00

244 B

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}}