1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 03:14:58 +00:00
serenity/Base/usr/share/man/man1/arp.md
Tim Ledbetter 8f253a745e Base: Update man pages for utilities
Man pages for utilities now more closely resemble ArgsParser output
2023-04-01 11:49:57 +01:00

34 lines
627 B
Markdown

## Name
arp - Display or modify the system ARP cache
## Synopsis
```**sh
# arp
```
## Description
This program run as root displays IP and MAC addresses of devices in local network.
ARP stands for Address Resolution Protocol, which is used to find devices in local network.
## Options
* `-s`, `--set`: Set an ARP table entry
* `-d`, `--delete`: Delete an ARP table entry
* `-n`, `--numeric`: Display numerical addresses. Don't resolve hostnames
## Arguments
* `address`: IPv4 protocol address
* `hwaddress`: Hardware address
## Examples
```sh
# arp
Address HWaddress
192.168.1.1 52:54:00:12:34:56
```