VU+ Solo Same mac address vu solos

Bk456

Inactive User
Joined
Jan 23, 2014
Messages
381
Reaction score
9
Ive got two vu solos with identical mac address, they are clones. Both are pulling the same IP address, when i send a ipk file to tmp folder it shows up only on my living room vu solo..

Ive did ifconfig on telnet to confirm they are identical, both are pulling identical IP address, turning DHCP off and giving each a unique IP does not help...

I found an ipk file thats supposed to change the mac address but all it did was disable my network interface and every time i try to turn it back on it crashes solo.

Anybody know what to do in this strange situation?
 
Try this mate

Note: Original Mac address starts with 00:09:34:xx:xx:xx


There a simple way to fix your DM boxes, but how this is done depends on the image you are using.

[1] on all Pli images Flubber/ Garnet/ Helenite / Iolite;

a) with telnet or DCC go to /var/etc on your clone box and create a file callled chg_mac.sh (command in telnet is 'touch chg_mac.sh)

b) now edit chg_mac.sh with say "vi" so the command is vi chg_mac.sh or in DCC use FTP to edit the file

c) now add this content to the file

Code: Select all
/sbin/ifconfig eth0 down hw ether 00:0a:03:43:51:4a
/sbin/ifconfig eth0 up


you can change the 00:0a:03:43:51:4a to an unused MAC address (pick a number but not the same as anything on your LAN)

d) now change the attributes of this file to chmod +x or 755 so it is executable under *nix - right click in DCC and select change attributes

e) make a file called init in your /var/etc directory - in telnet touch init

f)now edit init with say "vi" so the command is vi init or in DCC use FTP to edit the file

g) now add this content to the file

Code: Select all
if [ -x /var/etc/chg_mac.sh ]; then /var/etc/chg_mac.sh ; fi
/bin/setupnetwork


NOTE: if you do not use the name chg_mac.sh for the mac data make sure you change this init file to reflect the name you choose - else this will not work as your file will not be run at boot time.

h)now change the attributes of this file to chmod +x or 755 so it is executable under *nix - right click in DCC and select change attributes
Your Adsense Code


i) now reboot the DM

Another Method


Create a file called init (no extension - if you do it in notepad, it will add a .txt extension. the way around this is to save as init & put inverted commas around it - eg "init" & that will save it as init without any extension

Put this line into the file -

Code: Select all
ifconfig eth0 down; ifconfig eth0 hw ether 00:09:23:47:97:E5; ifconfig eth0 up


Then upload the file to VAR/ETC & reboot


Thanks to hayalet18 @ Satsharing
 
or, make a backup of your image and try the following:-

1. Using a linux-compatible text editor find a file named, "nfsroot" in "/etc/network/if-pre-up.d" and open it up for editing.
2. Now below the lines that begin with # (ie around 4th line down) insert the following:-
Code:
You don't have permission to view the code content. Log in or register now.
3. Save file and restart box.


This should force box to use this mac address which should be different from one you have.


If this doesn't work then flash back to your backup
 
Back
Top