mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
create arp.md
initial
This commit is contained in:
parent
308a0e40b5
commit
9638ee3fa2
1 changed files with 19 additions and 0 deletions
19
pages.pl/common/arp.md
Normal file
19
pages.pl/common/arp.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# arp
|
||||
|
||||
> Show and manipulate your system's ARP cache.
|
||||
|
||||
- Show current arp table:
|
||||
|
||||
`arp -a`
|
||||
|
||||
- Clear the entire cache:
|
||||
|
||||
`sudo arp -a -d`
|
||||
|
||||
- Delete a specific entry:
|
||||
|
||||
`arp -d {{address}}`
|
||||
|
||||
- Create an entry:
|
||||
|
||||
`arp -s {{address}} {{mac_address}}`
|
Loading…
Add table
Reference in a new issue