So if I understand correctly all I need to do is add the following lines in 
my network/interfaces file ?
>
> iface usb0 inet static
>     address 192.168.137.2
>     netmask 255.255.0.0
>     network 192.168.137.0
>     gateway 192.168.137.1
>     dns-nameservers 8.8.8.8
>     post-up route add default gw 192.168.137.1
>
>
>  Make 2 changes so it reads

iface usb0 inet static
    address 192.168.137.2
    netmask 255.255.0.0
    network 192.168.137.0
    nameservers 8.8.8.8
    gateway 192.168.137.1

The 192.168.*137* is based on the address supplied by the host.

Also this assumes you are NOT using connmanctl. That does its own thing.

Let me know if this helps.

The entire /etc/network/interfaces looks like (in my case)

# The loopback network interface
auto lo
iface lo inet loopback

iface usb0 inet static
    address 192.168.137.2
    netmask 255.255.0.0
    network 192.168.137.0
    nameservers 8.8.8.8
    gateway 192.168.137.1




 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/71c6e8d9-29bc-4ff2-9995-cb2f9d55696a%40googlegroups.com.

Reply via email to