How can I chance dns configuration and set static Ip address on colibri imx6dl v1.0A

How can I chance dns configuration and set static Ip address on colibri imx6dl v1.0A

What OS and what version of that OS are you using?

OS: angstrom v2014.12 - Kernel 3.10.17
IMG: colibri_iMX6_LinuxImage2.4_20150518

The Toradex Demo Images use connman as their network management application.
By default the module uses dhcp to get its network configuration.

To set a static IP address and nameservers:

  • see the help text

  • list the available services

  • set IP/mask/default gateway

  • set nameserver(s)

    connmanctl help
    connmanctl services
    connmanctl config ethernet_00142d259a48_cable --ipv4 manual 192.168.10.2 255.255.255.0 192.168.10.1
    connmanctl config ethernet_00142d259a48_cable --nameservers 8.8.8.8

See also the developer website.

Thank you so much …