aboutsummaryrefslogtreecommitdiffstats
path: root/hook/randommac
diff options
context:
space:
mode:
Diffstat (limited to 'hook/randommac')
-rw-r--r--hook/randommac15
1 files changed, 15 insertions, 0 deletions
diff --git a/hook/randommac b/hook/randommac
new file mode 100644
index 0000000..b6bddc3
--- /dev/null
+++ b/hook/randommac
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+run_hook() {
+ if [[ "${randommac}" == "y" ]]; then
+ if [[ -n "${ip}" ]]; then
+ changemac="$(echo ${ip} | cut -d: -f6)"
+ fi
+ if [[ -z "${changemac}" ]]; then
+ changemac="eth0"
+ fi
+
+ msg ":: Initializing network interface ${changemac} with random mac address..."
+ macchanger -e ${changemac}
+ fi
+}