mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-11 12:58:38 +00:00
Update cheatsheets
This commit is contained in:
@@ -12,18 +12,18 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
`ip {{[n|neighbour]}}`
|
||||
|
||||
- Remove entries in the neighbour table on device `eth0`:
|
||||
- Remove entries in the neighbour table on device `ethX`:
|
||||
|
||||
`sudo ip {{[n|neighbour]}} {{[f|flush]}} dev {{eth0}}`
|
||||
`sudo ip {{[n|neighbour]}} {{[f|flush]}} dev {{ethX}}`
|
||||
|
||||
- Perform a neighbour lookup and return a neighbour entry:
|
||||
|
||||
`ip {{[n|neighbour]}} {{[g|get]}} {{lookup_ip}} dev {{eth0}}`
|
||||
`ip {{[n|neighbour]}} {{[g|get]}} {{lookup_ip}} dev {{ethX}}`
|
||||
|
||||
- Add or delete an ARP entry for the neighbour IP address to `eth0`:
|
||||
- Add or delete an ARP entry for the neighbour IP address to `ethX`:
|
||||
|
||||
`sudo ip {{[n|neighbour]}} {{add|delete}} {{ip_address}} lladdr {{mac_address}} dev {{eth0}} nud reachable`
|
||||
`sudo ip {{[n|neighbour]}} {{add|delete}} {{ip_address}} lladdr {{mac_address}} dev {{ethX}} nud reachable`
|
||||
|
||||
- Change or replace an ARP entry for the neighbour IP address to `eth0`:
|
||||
- Change or replace an ARP entry for the neighbour IP address to `ethX`:
|
||||
|
||||
`sudo ip {{[n|neighbour]}} {{change|replace}} {{ip_address}} lladdr {{new_mac_address}} dev {{eth0}}`
|
||||
`sudo ip {{[n|neighbour]}} {{change|replace}} {{ip_address}} lladdr {{new_mac_address}} dev {{ethX}}`
|
||||
|
||||
Reference in New Issue
Block a user