Using two BeaglBoard with USB

Hi,
i´m using two BeagblBoard with my PC. i need to connected with USB. but everyone hav a USB Ip Address= 192.168.7.2

how can i change the static Ip Address from one Board ?

Thanks very mush

Hi Mourad,

Depending on how old your root file system is:

cat /etc/dogtab

we recently added a script: /opt/scripts/boot/autoconfigure_usb0.sh

So in /etc/network/interfaces

You just need to change the *7* to *8* or (anything 1-255)

# Ethernet/RNDIS gadget (g_ether)
# Used by: /opt/scripts/boot/autoconfigure_usb0.sh
iface usb0 inet static
    address 192.168.7.2
    netmask 255.255.255.252
    network 192.168.7.0
    gateway 192.168.7.1

and on the next reboot,

/opt/scripts/boot/autoconfigure_usb0.sh

makes sure it's setup correctly..

Regards,