Reputation: 387
how can change my pc settings in linux so that my network cannot recognise my previous mac address and thinks that is a new pc that connects to network via wifi. I ask this because something went wrong and cannot connect because my pc is blocked from this network
Upvotes: 1
Views: 99
Reputation: 479
To change your MAC address on Linux (or OSX), use the command ifconfig :
ifconfig [interface name] hw ether [new MAC address]
Example: ifconfig eth0 hw ether 01:02:03:04:05:06
Upvotes: 3