by Maloute » Fri May 15, 2015 3:57 pm
Hello,
I also had the same problem with my odroid u3, but my workaround is not really the same, so mods don't hesitate to delete this post if you find my answer not apropriate.
After upgrading to systemd 219-6, I had the following error in my systemd-networkd logs:
$this->bbcode_second_pass_code('', 'journalctl -b -u systemd-networkd.service')
$this->bbcode_second_pass_code('', '
....
May 15 15:41:11 any systemd-networkd[170]: eth0 : eth0 : could not bring up interface: Operation not supported
.....
')
Static ipv4 address was not working either because systemd could not brink eth0 up.
The workaround was for me to do edit the systemd-networkd service and add the following code :
$this->bbcode_second_pass_code('', '# systemctl edit systemd-networkd.service')
$this->bbcode_second_pass_code('', '[Service]
ExecStartPost=/usr/bin/ip link set eth0 up')
Thanks for this thread which was the starting point for my problem !
Regards,