Welcome!

Welcome to Satlover forums, full of great people, ideas and excitement.

Please register if you would like to take part. link..

Register Now

Alert: Don't Use Hotmail Email Accounts for registration

Collapse

Before Access to all Forums and Trial accounts you must need to activate your account Email address

Changing the MAC address

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • aslambhatti
    Senior Member
    • Jun 2010
    • 185

    Changing the MAC address

    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.
  • jurazg
    Senior Member
    • Jul 2010
    • 122

    #2
    Re: Changing the MAC address

    Try to find a softwer that changes the macc on Dreambox is probably easier to use

    Manual Method

    Use DCC 2.95 to telnet to box.

    you will see prompt as follows

    root@dreambox:~>

    type the following lines followed by enter obviously.
    in the mac address i left the last three columns as xx:xx:xx
    these should either be numbers 0-9 or letters A-F
    ie 0A:9F:CB

    So the whole mac address would be similar to this 00:09:34:0A:9F:CB


    cd /var/etc
    rm init
    echo \#!/bin/sh **** init
    echo ifconfig eth0 down **** init
    echo ifconfig eth0 hw ether 00:09:34:xx:xx:xx **** init
    echo ifconfig eth0 up **** init
    chmod 755 init
    reboot

    Summary

    Both these methods create a file in /var/etc called init which runs on every
    reboot, and changes your mac address to one like an original dreambox .


    But remember if you use mac address reservation in your router
    to give your dreambox a constant ip address , you need to
    change your settings there too.

    To return to your original mac address just delete
    the file and reboot, or install a different image
    Attached Files
    Dreambox 7000 DM 800 HD
    sigpic

    Comment

    • Jerry2020
      Banned
      • Feb 2010
      • 221

      #3
      Re: Changing the MAC address

      Do you give them different IP's?

      Comment

      Working...