How to change the MAC address in your DM/VU+ ?

Code:
ifconfig eth0 down
ifconfig eth0 hw ether 00:80:48:BA:d1:30
ifconfig eth0 up
ifconfig eth0 |grep HWaddr


Or in a file in your DM/VU :

Edit file /etc/network/interfaces

Code:
auto lo 
iface lo inet loopback 

auto eth0 
iface eth0 inet dhcp pre-up ifconfig eth0 hw ether 00:09:34:28:5E:00
_________________________