15

This seems to work fine:

dhclient eth0 ifconfig eth0:1 192.168.1.105 up 

But not this:

ifconfig eth0 192.168.1.105 up dhclient eth0:1 

Is there any way to get dhcp on a virtual address?

1 Answer 1

20

You can't really do this. Your card only has one MAC address but multiple IP interfaces. They will need to have their addresses statically assigned.

When the DHCP server sends back the DHCPOFFER how does it get delivered to eth0:1 and not to eth0? eth0:1 sends out a DHCPDISCOVER or a DHCPREQUEST by broadcasting. The DHCP server responds with a DHCPOFFER to inform the client of its IP address. But how will the DHCPOFFER arrive if eth0:1 doesn't yet have an IP address? The DHCP server broadcasts back and relies on the link layer to correctly deliver the ethernet frame (with the other associated layers stacked on top of it) to the right MAC address. And now your device has an IP address.

The problem for the DHCPOFFER is that from a Layer-2 perspective the two "devices" (eth0 and eth0:1) are indistinguishable, and so (from a Layer-3 perspective) the DHCPOFFER is destined for 255.255.255.255 (because eth0:1 doesn't yet have an IP address).

You can get around this by using VLANs. VLANs will allow you to take the same physical broadcast domain and treat it like multiple "virtual" broadcast domains (hence the name).

2
  • Great answer! I think I saw similar answers on forums, but this one is much clearer and I get it now. It appears that if I were to follow these instructions cyberciti.biz/tips/… I would then be able to do dhclient eth0.1 to get a DHCPOFFER. Commented Sep 7, 2011 at 16:05
  • Yep. As long as your networking infrastructure is setup correctly for VLANs. See How Do Vlans Work?. Commented Sep 7, 2011 at 17:25

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.