From 18f5b50db7d2407c9d14aa7d59cccf49a824150c Mon Sep 17 00:00:00 2001 From: misch- Date: Tue, 29 Dec 2015 20:33:00 -0600 Subject: [PATCH] arp: add page --- pages/linux/arp.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/linux/arp.md diff --git a/pages/linux/arp.md b/pages/linux/arp.md new file mode 100644 index 0000000000..335bcff080 --- /dev/null +++ b/pages/linux/arp.md @@ -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}}`