On Mon, May 4, 2020 at 8:17 AM <[email protected]> wrote: > > Hi all, > I upgraded my BBB with the image in the object. Trying to set up the > /etc/network/interfaces file as following: > > # The loopback network interface > auto lo > iface lo inet loopback > > # The primary network interface > #allow-hotplug eth0 > iface eth0 inet static > address 192.168.1.25 > netmask 255.255.255.0 > gateway 192.168.1.1 > > the BBB does not set the static ip as expected. Using the previous image > release (AM3358 Debian 9.12 2020-04-06 4GB SD ImgTec) the IP setting worked > fine. > Please, any advice? > Thank's in advance.
Run connmanctl services: debian@bbb-pwr01-ser09:~$ sudo connmanctl services *AO Wired ethernet_c8a030abf366_cable "copy" your version of: ethernet_c8a030abf366_cable Then run: sudo connmanctl config <service> --ipv4 manual <ip_addr> <netmask> <gateway> --nameservers <dns_server> sudo connmanctl config ethernet_c8a030abf366_cable --ipv4 manual 192.168.1.25 255.255.255.0 192.168.1.1 --nameservers 8.8.8.8 Regards, -- Robert Nelson https://rcn-ee.com/ -- 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/CAOCHtYhSSYXudK-oUyouF%3DJnucgcbqeCdWU%2B6CkF_5Jmnqh4RQ%40mail.gmail.com.
