2022-04-10 14:47:05 +02:00
|
|
|
# ip neighbour
|
2021-04-08 15:04:30 +02:00
|
|
|
|
|
|
|
> Neighbour/ARP tables management IP subcommand.
|
|
|
|
> More information: <https://manned.org/ip-neighbour.8>.
|
|
|
|
|
|
|
|
- Display the neighbour/ARP table entries:
|
|
|
|
|
2025-03-07 13:05:55 +02:00
|
|
|
`ip {{[n|neighbour]}}`
|
2021-04-08 15:04:30 +02:00
|
|
|
|
|
|
|
- Remove entries in the neighbour table on device `eth0`:
|
|
|
|
|
2025-03-09 14:01:49 +02:00
|
|
|
`sudo ip {{[n|neighbour]}} {{[f|flush]}} dev {{eth0}}`
|
2021-04-08 15:04:30 +02:00
|
|
|
|
|
|
|
- Perform a neighbour lookup and return a neighbour entry:
|
|
|
|
|
2025-03-09 14:01:49 +02:00
|
|
|
`ip {{[n|neighbour]}} {{[g|get]}} {{lookup_ip}} dev {{eth0}}`
|
2021-04-08 15:04:30 +02:00
|
|
|
|
|
|
|
- Add or delete an ARP entry for the neighbour IP address to `eth0`:
|
|
|
|
|
2025-03-14 19:24:39 +02:00
|
|
|
`sudo ip {{[n|neighbour]}} {{add|delete}} {{ip_address}} lladdr {{mac_address}} dev {{eth0}} nud reachable`
|
2021-04-08 15:04:30 +02:00
|
|
|
|
|
|
|
- Change or replace an ARP entry for the neighbour IP address to `eth0`:
|
|
|
|
|
2025-03-07 13:05:55 +02:00
|
|
|
`sudo ip {{[n|neighbour]}} {{change|replace}} {{ip_address}} lladdr {{new_mac_address}} dev {{eth0}}`
|