1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/arp-scan.md

20 lines
421 B
Markdown
Raw Normal View History

2017-11-28 10:26:57 +01:00
# arp-scan
2017-11-29 09:43:09 +01:00
> Send ARP packets to hosts (specified as IP addresses or hostnames) to scan the local network.
2017-11-28 10:26:57 +01:00
- Scan the current local network:
`arp-scan --localnet`
2017-11-29 09:43:09 +01:00
- Scan an IP network with a custom bitmask:
2017-11-28 10:26:57 +01:00
`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}}`
2017-11-29 09:43:09 +01:00
- Scan an IP network with a custom net mask:
2017-11-28 10:26:57 +01:00
`arp-scan {{10.0.0.0}}:{{255.255.255.0}}`