Michael Pope
unread,Nov 15, 2012, 2:56:30 AM11/15/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mlu...@googlegroups.com
I've just brought a CuBox and I'm trying to get it to boot over PXE, I'm
getting closer, but where I'm becoming stuck is how it is asking for an
IP. It's using bootp, which as I understand is a slimmed down version of
dhcp.
I'm running isc-dhcpd on my Ubuntu 12.04 box in the next room, here is
the config for the dhcp server (it's messy I know)
# Internal subnet
subnet 10.1.1.0 netmask 255.255.255.0 {
allow booting;
allow bootp;
range 10.1.1.100 10.1.1.200;
option domain-name-servers 10.1.1.1;
option domain-name "lan";
option routers 10.1.1.1;
option broadcast-address 10.1.1.255;
default-lease-time 72000;
max-lease-time 72000;
}
ddns-update-style none;
# For Mythserver (PXE Boot lines)
authoritative;
option domain-name-servers 10.1.1.1;
option broadcast-address 10.1.1.255;
option routers 10.1.1.1;
option root-path "/opt/ltsp/i386";
next-server 10.1.1.10;
if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
filename "/ltsp/i386/pxelinux.0";
} else {
filename "/ltsp/i386/nbi.img";
}
I've added the allow booting & allow bootp today in the hope to satisfy
bootp broadcast requests from my CuBox but it doesn't seem to be
working. I've restarted my dhcpd server.
I've got a notebook on the same network running Linux Mint 13, is there
a command which I could use to test if my dhcp server is listening to
bootp requests?
from
Michael