1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/ip-neighbour.md
Raizo62 119c84205e
ip-neighbour.md : title : the command is "ip" and not "ip-neighbour" (#7973)
the syntaxof title is now consistent with the others commands
2022-04-10 12:47:05 +00:00

24 lines
725 B
Markdown

# ip neighbour
> Neighbour/ARP tables management IP subcommand.
> More information: <https://manned.org/ip-neighbour.8>.
- 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}}`