From 9638ee3fa20ca763db695520b94180ad1120fe24 Mon Sep 17 00:00:00 2001 From: Michal Date: Wed, 15 Apr 2020 17:31:34 +0200 Subject: [PATCH] create arp.md initial --- pages.pl/common/arp.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages.pl/common/arp.md diff --git a/pages.pl/common/arp.md b/pages.pl/common/arp.md new file mode 100644 index 0000000000..7c6a70eac3 --- /dev/null +++ b/pages.pl/common/arp.md @@ -0,0 +1,19 @@ +# 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}}`