I have trouble to configure my network to access my device with a friendly name. Here is my situation:
LAN
^
----¦---- USB/ETH ------------------
¦ PC ¦ ---------> ¦ Embedded device¦
--------- ------------------
What I'd like to do is using a friendly DNS name to access my device, for example opening a webrowser, typing "mydevice" and acces the web page of my device. I use dnsmasq as DNS/DHCP server.
It didn't work because after configuring my USB network adapter, my PC always use the USB/ETH as default route and the outside world is not reachable (Under Linux and Windows).
Solution 1 : Removing default route from the DHCP server.
This worked fine under Linux but my Windows 7 doesn't want to set the IP address and shows a very clear error message:
Your computer was not assigned an address from the network (by the DHCP Server) for the Network Card with network address 0x001830000000. The following error occurred: 0x79. Your computer will continue to try and obtain an address on its own from the network address (DHCP) server.
Solution 2: Changing the metric of the USB/ETH interface
I got this solution from there: http://support.microsoft.com/kb/894564
This worked fine under Windows however, I'd like to make things "automagic" and avoid the need to go into Windows configuration! On my Linux host, as the default route is now configured, I'm back to the first situation.
As the metric is computed locally I was wondering if it is really possible to change this value from the DHCP server (probably not!)? Do you have any suggestion to make this weird network configuration to work in any case with both operating systems? Or is it possible to "fake" a slow connection on my embedded device to force the operating system putting a higher metric?
Thanks for your suggestions!
EDIT 1
I'd like to avoid any manipulation from the PC ...