fica tranquilo:)
o grande problema é toda vez que reinicia perde o mac clonado, então peguei esse script porem não sei como usar ele nem onde deve salvar para quando reiniciar o mac ja subir alterado.
#! /bin/sh
#
# Nome: trocarmac.sh
#
# Trocar mac de placa de rede no linux
# Produzido por <falecom EM robertoalmeida.com>
#
# 04/10/2006 - 20:25
#
#### PARAMETROS ##############
NOVOMAC="00:0E:2E:43:0C:4E"
INTERFACE="ath0"
IP="192..168.2.54"
MASCARA="255.255.255.0"
GATEWAY="192.168.2.1"
####
ifconfig ath0 down
ifconfig ath0 hw ether 00:0E:2E:43:0C:4E
ifconfig ath0 IP netmask 255.255.255.0
route add default gw 192.168.2.1
####