1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-30 22:55:24 +02:00

arp-scan: add page (#1699)

This commit is contained in:
Starbeamrainbowlabs 2017-11-30 15:06:36 +00:00 committed by GitHub
commit 179de05e25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

19
pages/linux/arp-scan.md Normal file
View file

@ -0,0 +1,19 @@
# arp-scan
> Send ARP packets to hosts (specified as IP addresses or hostnames) to scan the local network.
- Scan the current local network:
`arp-scan --localnet`
- Scan an IP network with a custom bitmask:
`arp-scan {{192.168.1.1}}/{{24}}`
- Scan an IP network within a custom range:
`arp-scan {{127.0.0.0}}-{{127.0.0.31}}`
- Scan an IP network with a custom net mask:
`arp-scan {{10.0.0.0}}:{{255.255.255.0}}`