Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

29
linux/ip-neighbour Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`