Skip to content

Network

solidTV uses connman as network manager. To change the network settings you can use the command line tool connmanctl.

To change any setting, you need to figure out the service you want to configure:

connmanctl services
connmanctl services
*AO Wired                ethernet_00602f94b8cd_cable

Services starting with 'ethernet_' represends LAN, services starting with 'wifi_' wifi networks.

Manual IP

To set a manual IPv4 address:

connmanctl config <service> --ipv4 manual <ip> <netmask> <gateway>
connmanctl config ethernet_00602f94b8cd_cable --ipv4 manual 192.168.40.71 255.255.255.0 192.168.40.1

DHCP

To get a IP configuration from a DHCP server:

connmanctl config <service> --ipv4 dhcp
connmanctl config ethernet_00602f94b8cd_cable --ipv4 dhcp

Nameserver

To set a nameserver for a service:

connmanctl config <service> --nameservers <nameserver>
connmanctl config ethernet_00602f94b8cd_cable --nameservers 8.8.8.8

Timeserver

To set a NTP server for a service:

connmanctl config <service> --timeservers <ntp server>
connmanctl config ethernet_00602f94b8cd_cable --timeservers 1.de.pool.ntp.org

To set a NTP server globally:

/opt/data/settings/connman/settings

Back to top