Skip to content

Commit

Permalink
ip-neighbour: add page (#5697)
Browse files Browse the repository at this point in the history
  • Loading branch information
patricedenis authored Apr 8, 2021
1 parent 4ff745f commit ce48461
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pages/linux/ip-neighbour.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# 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}}`

0 comments on commit ce48461

Please sign in to comment.