From ce4846141a0950fb05d467dd6849a311574c06e0 Mon Sep 17 00:00:00 2001 From: Patrice Denis Date: Thu, 8 Apr 2021 15:04:30 +0200 Subject: [PATCH] ip-neighbour: add page (#5697) --- pages/linux/ip-neighbour.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/ip-neighbour.md diff --git a/pages/linux/ip-neighbour.md b/pages/linux/ip-neighbour.md new file mode 100644 index 000000000..13bf81086 --- /dev/null +++ b/pages/linux/ip-neighbour.md @@ -0,0 +1,24 @@ +# ip-neighbour + +> Neighbour/ARP tables management IP subcommand. +> More information: . + +- Display the neighbour/ARP table entries: + +`ip neighbour` + +- Remove entries in the neighbour table on device `eth0`: + +`sudo ip neighbour flush dev {{eth0}}` + +- Perform a neighbour lookup and return a neighbour entry: + +`ip neighbour get {{lookup_ip}} dev {{eth0}}` + +- Add or delete an ARP entry for the neighbour IP address to `eth0`: + +`sudo ip neighbour {{add|del}} {{ip_address}} lladdr {{mac_address}} dev {{eth0}} nud reachable` + +- Change or replace an ARP entry for the neighbour IP address to `eth0`: + +`sudo ip neighbour {{change|replace}} {{ip_address}} lladdr {{new_mac_address}} dev {{eth0}}`