<!DOCTYPE html><html><head>
<style type="text/css">body { font-family:'DejaVu Sans Mono'; font-size:12px}</style>
</head>
<body>On Sat, 27 Apr 2013 14:37:28 +1200, Steve Hodge <stevehodge@gmail.com> wrote:<br><br><blockquote style="margin: 0 0 0.80ex; border-left: #0000FF 2px solid; padding-left: 1ex"><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</div></div></div></div></blockquote><div><br></div><div><br></div><blockquote style="margin: 0 0 0.80ex; border-left: #0000FF 2px solid; padding-left: 1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><br></div></div></div></div>
</blockquote><div>HDHR doesn't need to connect to the network.Are you saying I only need the section: </div><div><br></div><div>host <name of your MythTV PC with -eth0 on the end> {<br>hardware ethernet <your eth0 HWaddr>;<br>fixed-address 10.99.0.1;<br>}</div><div><br></div><div>and comment the "option routers" line in the dhcpd.confile ?</div><div><br></div><div>Below are Nick's instructions:</div><div><br></div><div>"Change the "options domain-name" line to your domain name if you have<br> one. If not, I think you need to just comment out that line with a #<br> in front. It is possible you may need to use your ISP's domain name.<br> I have my own domain so I have always just used that.<br><br> Change the "options domain-name-server" line to the DNS server<br> addresses you use. If you run your own DNS servers like I do, then<br> use their addresses. Otherwise, find out the DNS servers that your<br> ISP provides and use their addresses. They will likely be stored in<br> your Internet router somewhere, and your ISP can tell you if they do<br> not have them listed on a web page. You can easily find out the<br> primary address by just doing a command like:<br><br> nslookup easynews.com<br><br> The address in the "Server:" line of the response is the primary DNS<br> server you have configured. There will usually be at least two DNS<br> servers though, so it is best to have both listed if possible.<br><br> Note that the "options domain-name-server" line is not necessary for<br> your HDHomerun as it does not do DNS lookups, so you could just<br> comment out that line too. But if you ever connect anything else to<br> eth0 it would be good to have it configured so things work properly.<br><br> Uncomment the "#authoritative;" line.<br><br> Add the following host and subnet declarations to dhcp.conf:<br><br> host <name of your MythTV PC with -eth0 on the end> {<br> hardware ethernet <your eth0 HWaddr>;<br> fixed-address 10.99.0.1;<br> }<br><br> 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 <your MythTV box WiFi ip address>;<br> }<br><br> Note that the "option routers" line above is optional as your<br> HDHomerun will not need it. If it is assigned by a DHCP server<br> somewhere, it may change and you should not put the "options routers"<br> line until you have configured it also with a static IP address."<br></div><div><br></div><div>-Paul</div><br><br></body></html>