mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 14:42:19 +02:00

* macchanger: edit page * Update pages/linux/macchanger.md Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * Update pages/linux/macchanger.md Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * Update pages/linux/macchanger.md Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * Update pages/linux/macchanger.md Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * macchanger: remove buggy example * Update pages/linux/macchanger.md Co-authored-by: Juri Dispan <juri.dispan@posteo.net> --------- Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
28 lines
760 B
Markdown
28 lines
760 B
Markdown
# macchanger
|
|
|
|
> Command-line utility for manipulating network interface MAC addresses.
|
|
> More information: <https://manned.org/macchanger>.
|
|
|
|
- View the current and permanent MAC addresses of a interface:
|
|
|
|
`macchanger --show {{interface}}`
|
|
|
|
- Set interface to a random MAC:
|
|
|
|
`macchanger --random {{interface}}`
|
|
|
|
- Set an interface to a random MAC address, and pretend to be a [b]urned-[i]n-[a]ddress:
|
|
|
|
`macchanger --random --bia {{interface}}`
|
|
|
|
- Set an interface to a specific MAC address:
|
|
|
|
`macchanger --mac {{XX:XX:XX:XX:XX:XX}} {{interface}}`
|
|
|
|
- Print the identifications (the first three bytes of a MAC address) of all known vendors:
|
|
|
|
`macchanger --list`
|
|
|
|
- Reset an interface to its permanent hardware MAC address:
|
|
|
|
`macchanger --permanent {{interface}}`
|