9 lines
194 B
Bash
Executable file
9 lines
194 B
Bash
Executable file
#!/bin/bash
|
|
|
|
OUI_PREFIX="00:50:56"
|
|
|
|
echo -e "\nOUI Prefix: $OUI_PREFIX"
|
|
|
|
LAST_OCTETS=$(openssl rand -hex 3 | sed 's/\(..\)/\1:/g; s/.$//')
|
|
echo -e "Generated MAC: ${OUI_PREFIX}:${LAST_OCTETS}"
|
|
|