IP Address range problems - Odroid C2

Hi,

if i set the static IP address to 10.1.0.12 I can access Volumio only from devices within the address range 10.1.0.x but not 10.1.1.x ?

I don’t have this problem with other devices/PCs because all my headless devices have 10.1.0.x/255.255.0.0 and all others 10.1.1.x/255.255.0.0

Maybe check the /etc/network/interfaces configuration via SSH for the correct network mask. I noticed issues with the network config in some scenarios.

Ok there is absolutely no IP or anything:

[code]auto wlan0
auto lo
iface lo inet loopback

allow-hotplug eth0
iface eth0 inet manual

allow-hotplug wlan0
iface wlan0 inet manual[/code]

I changed to Debian style. Is that correct?

[code]auto lo
iface lo inet loopback

auto eth0
allow-hotplug eth0
iface eth0 inet static
address 10.1.0.12
netmask 255.255.0.0
gateway 10.1.0.1

auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual[/code]

Looks alright to me. Just restart the networking service or reboot the device and it should work.

If it did, try changing any network settings in the GUI to see if your changes are persistent. Mine were overwritten - at least in the latest x86 version.