Changing the MAC address
I have two dreamboxes. They both have the latest gemini image. If I plug them both into my network at the same time, they don't work correctly.
After investigating, i find they have the same MAC addresses:
00 : 09 : 34 : BA : DA : DD
any way to fix this?
----------
i had same issue...you can change the mac on one...usin the linux command to change them...macs cannot be changed its hard coded..it was only in the first batch manufatured...the line can be put in the init file easy done
------------
i thought you could change the mac with the ifconfig command like we can on a normal linux box
----------
i finally figured out how to change it a couple hours ago, but now the problem is where to put it so it runs automatically in a script.
#!/bin/sh
ifconfig eth0 down
ifconfig eth0 hw ether 00:09:34:1E:A3:12
ifconfig eth0 up
-------
Put it in /var/etc/init, if the file dosn't exist, create it, but with linux editor.
That did the trick.
I have two dreamboxes. They both have the latest gemini image. If I plug them both into my network at the same time, they don't work correctly.
After investigating, i find they have the same MAC addresses:
00 : 09 : 34 : BA : DA : DD
any way to fix this?
----------
i had same issue...you can change the mac on one...usin the linux command to change them...macs cannot be changed its hard coded..it was only in the first batch manufatured...the line can be put in the init file easy done
------------
i thought you could change the mac with the ifconfig command like we can on a normal linux box
----------
i finally figured out how to change it a couple hours ago, but now the problem is where to put it so it runs automatically in a script.
#!/bin/sh
ifconfig eth0 down
ifconfig eth0 hw ether 00:09:34:1E:A3:12
ifconfig eth0 up
-------
Put it in /var/etc/init, if the file dosn't exist, create it, but with linux editor.
That did the trick.
Comment