1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 16:13:31 +02:00

Merge branch 'arp-add-page' of git://github.com/Misch-/tldr into Misch--arp-add-page

This commit is contained in:
Ruben Vereecken 2016-01-21 12:55:06 +01:00
commit c1a3fafd9b

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