<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Sat, Apr 27, 2013 at 1:39 PM, Paulgir <span dir="ltr"><<a href="mailto:paulgir@gmail.com" target="_blank">paulgir@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">

Apr 27 13:13:42 myth dhcpd: No subnet declaration for eth0 (no IPv4 addresses).<br>
Apr 27 13:13:42 myth dhcpd: ** Ignoring requests on eth0.  If this is not what<br>
Apr 27 13:13:42 myth dhcpd:    you want, please write a subnet declaration<br>
Apr 27 13:13:42 myth dhcpd:    in your dhcpd.conf file for the network segment<br>
Apr 27 13:13:42 myth dhcpd:    to which interface eth0 is attached. **<br>
Apr 27 13:13:42 myth dhcpd:<br>
Apr 27 13:13:42 myth dhcpd:<br>
Apr 27 13:13:42 myth dhcpd: Not configured to listen on any interfaces!<br></blockquote><div><br></div><div>Clearly you have misconfigured DHCP. It's probably working after 20 seconds because it's defaulting back to link-local addresses.<br>
</div><div><br></div><div>I know nothing about that DHCP server, but I think this looks wrong:<br></div><div><blockquote style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" class="gmail_quote">
host myth-eth0 {<br> hardware ethernet 14:da:e9:dc:51:a1;<br> fixed-address 10.99.0.1;<br> }<br></blockquote><div><br></div><div>DHCP servers listen on a network interface - it can't function until the interface has an IP address. So obviously you can't use a DHCP server to assign an IP address to the interface that the DHCP server is supposed to be listening on. But that's what this configuration seems to be trying to do. You should assign 10.99.0.1 to eth0 in the normal way (whatever that is for ubuntu) and leave this section out.<br>
</div><div><br><blockquote style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" class="gmail_quote"> subnet 10.99.0.0 netmask 255.255.255.0 {<br> range 10.99.0.50 10.99.0.250;<br> option subnet-mask 255.255.255.0;<br>
 option broadcast-address 10.99.0.255;<br> option routers 192.168.2.2;<br> }<br></blockquote> </div></div><div>I can't imagine you need the "option subnet-mask" line in there - you already supplied the netmask.<br>
</div><div>I assume "option routers" is setting the gateway on the client interface. But the client is not going to be able to connect to 192.168.2.2 - it's not on the same subnet and there is no router or anything to help. This should be set to the address of the myth box on that subnet, i.e. 10.99.0.1. If the hdhr needs connectivity to the rest of the network then you'll need to do some iptables config on the myth box.<br>
<br></div><div>Cheers,<br>Steve<br></div></div></div></div>