I have a USB device that works as a USB RNDIS ethernet device.
This device does not have DHCP capability so the host computer needs to allocate IP address for itself.
I tried to add to the /etc/network/interfaces
auto usb0
iface usb0 inet static
address 192.168.7.15
netmask 255.255.255.0
network 192.168.7.0
Then I run into the problem similar to this one: when the device is not connected then usb0 will not show, and network-manager
would fail at boot.
Is there a way to work around this?