Tuesday, November 14, 2006

Change your mac address!

Came here searching for changing your machine address ? What are you upto? Naughty Boy!

It's fairly simple though - Use a program called macchanger on Linux

On Ubuntu,

sudo apt-get install macchanger

You are ready!

Write a simple script like this

# --- Script Starts ---
#!/bin/bash
/etc/init.d/network stop
macchanger --mac=$1 eth0
/etc/init.d/network start
# --- Script Ends ---

After giving your script the execute permission, invoke your shellscript using

./script_name your_mac_address

No comments: