Hi,
I upgraded my system to ubuntu 17.04 sometimes in the last few months and had to change some settings in my mod. It seems with the installation I have the automatic configuration of the ethernet over USB interface does not work anymore. Thus for future reference and other users in a similar situation I share this:
- Find out what the ethernet interface is named by looking at the dmesg output after plugging in the powered on MOD DUO. Look for a line like this:
[Mon Jun 11 18:01:27 2018] cdc_ether 1-5:1.0 enp0s18f2u5: renamed from usb0
So the name is enp0s18f2u5 in my case
- Set the network address manually using the ip tool. ifconfig seems to be deprecated in favor of the tool ip, so that’s why I use here…
sudo ip address change 192.168.51.2/16 dev enp0s18f2u5
In this step it’s important to give the netmask in the form /16 at the end of the address
- Bring the network interface up
sudo ip link set enp0s18f2u5 up
- Point your browser to 192.168.51.1 and you should see the interface