You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To solve the same MAC address on nodes a possible solution is to:
install macchanger
Apt install macchanger
Create Bash script
for example vi setmac.sh with content #!/bin/bash ifconfig eth0 down macchanger --mac=<mac address seperated by colon> eth0 ifconfig eth0 up
Make Bash script executable chmod +x setmac.sh
Run Bash script sudo setmac.sh
Note , the script helps to change the MAC address while the interface is not in use
The text was updated successfully, but these errors were encountered:
To solve the same MAC address on nodes a possible solution is to:
install macchanger
Apt install macchanger
Create Bash script
for example vi setmac.sh with content
#!/bin/bash
ifconfig eth0 down
macchanger --mac=<mac address seperated by colon> eth0
ifconfig eth0 up
Make Bash script executable
chmod +x setmac.sh
Run Bash script
sudo setmac.sh
Note , the script helps to change the MAC address while the interface is not in use
The text was updated successfully, but these errors were encountered: