1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 18:22:08 +02:00

arp: add page

This commit is contained in:
misch- 2015-12-29 20:33:00 -06:00
parent dcfba64c01
commit 18f5b50db7

19
pages/linux/arp.md Normal file
View file

@ -0,0 +1,19 @@
# arp
> Show and manipulate your system's ARP cache
- Show current arp table
`arp`
- Delete an entry
`arp -d {{address}}`
- Create an entry
`arp -s {{address}} {{mac address}}`
- Turn arp off or on
`ip link set arp {{off|on}} dev {{interface}}`