Bug#695500: debian-installer-7.0-netboot-kfreebsd-amd64: does not boot from pxe - still reproduceable

2013-02-28 Thread Steven Chamberlain
Hi,

On 21/02/13 06:39, Martin Zobel-Helas wrote:
 for tftpd-hpa it is even worse:

 | CLIENT MAC ADDR: 00 00 24 CE 6E B8  

 | CLIENT IP: 10.24.0.10  MASK: 255.255.255.0  DHCP IP: 10.24.0.1  

 | TFTP.   

 | PXE-M0F: Exiting Intel Boot Agent.
 | 
 | No Boot device available, enter monitor.

That looks more like a problem with the configuration of tftpd-hpa, or
the DHCP response?  Since there is no mention of grub2pxe at all.


I've tried kfreebsd-i386 d-i rc1 on a few thin client systems, which
have Intel UNDI PXE-2.0, with Realtek RTL 8139 or Via Rhine II onboard
NICs, and all were able to netboot the GRUB menu.

My test setup is detailed below.

/etc/dhcp3/dhcpd.conf :
 allow booting;
 allow bootp;
 
 host kfreebsd-i386 {
 # Client MAC / IP
 hardware ethernet xx:xx:xx:xx:xx:xx;
 fixed-address 192.0.2.2;
 # TFTP server / boot filename
 next-server 192.0.2.1;
 filename grub2pxe;
 }

/etc/default/tftpd-hpa :
 TFTP_OPTIONS=--secure --refuse utimeout
 TFTP_USERNAME=tftp
 TFTP_DIRECTORY=/var/lib/tftpboot
 TFTP_ADDRESS=0.0.0.0:69

# ps ax | grep tftpd
23480 ?Ss 0:00 /usr/sbin/in.tftpd --listen --user tftp
--address 0.0.0.0:69 --secure --refuse utimeout /var/lib/tftpboot

/var/lib/tftpboot/ :
 lrwxrwxrwx 1 root root 39 Feb 27 20:11 grub2pxe - 
 debian-installer/kfreebsd-i386/grub2pxe

/var/lib/tftpboot/debian-installer/kfreebsd-i386/ :
 -rw-r--r-- 1 root root4987 Feb 11 23:59 font.pf2~
 -rw-r--r-- 1 root root  130587 Feb 11 23:59 grub2pxe
 -rw-r--r-- 1 root root1153 Feb 27 20:46 grub.cfg
 -rw-r--r-- 1 root root 4875366 Feb 11 23:59 initrd.gz
 -rw-r--r-- 1 root root 5123957 Feb 11 23:59 kfreebsd-9.gz
 -rw-r--r-- 1 root root   75511 Feb 11 23:59 splash.png

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#695500: debian-installer-7.0-netboot-kfreebsd-amd64: does not boot from pxe - still reproduceable

2013-02-28 Thread Steven Chamberlain
On 21/02/13 06:39, Martin Zobel-Helas wrote:
 | CLIENT MAC ADDR: 00 00 24 CE 6E B8  

 | CLIENT IP: 10.24.0.10  MASK: 255.255.255.0  DHCP IP: 10.24.0.1  

 | TFTP.   

 | PXE-M0F: Exiting Intel Boot Agent.
 | 
 | No Boot device available, enter monitor.

Apparently that can simply mean 'file not found':
http://comments.gmane.org/gmane.comp.hardware.soekris.technical/17688

You may want to get a tcpdump capture of this from the TFTP server,
and/or dry-run your setting of 'filename' (as in dhcpd.conf), with the
command-line client, i.e.:

$ tftp 192.0.2.1
tftp get grub2pxe

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#695500: debian-installer-7.0-netboot-kfreebsd-amd64: does not boot from pxe - still reproduceable

2013-02-20 Thread Steven Chamberlain
On 20/02/13 23:09, Martin Zobel-Helas wrote:
 ifconfig eth0 10.24.0.1 netmask 255.255.255.0
 apt-get install tftpd

Ahhh!

 $ apt-cache show tftpd
 ...
 Tftpd is not suitable for use with the PXE bootloader; for that, use atftpd 
 or tftpd-hpa.

I really think that belongs in a NEWS file and shown during install.
After all, what is *the* most common reason for anyone to install a
tftpd these days...

Did you also try to netboot a GNU/Linux d-i from this tftpd?


 | Welcome to GRUB!

 | 
 | error: prefix is not set.

That 'error' is annoying, I think it affects Linux too and is harmless
but I'm not sure why it happens.  It would be nice to print Loading
GRUB graphical menu... here or similar.

On some hardware (e.g. serial redirection by some BMC/ILO/ILOM) the
graphical console will fail and it things would seem to hang at this
point, so it would be nice to be given some clue...


 | grub 

So I think it was unable to retrieve the menu.lst;  that fits in with
the above explanation.

Thankyou for detailed feedback, with the crucial info.

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#695500: debian-installer-7.0-netboot-kfreebsd-amd64: does not boot from pxe - still reproduceable

2013-02-20 Thread Martin Zobel-Helas
Hi, 

On Wed Feb 20, 2013 at 23:25:25 +, Steven Chamberlain wrote:
 On 20/02/13 23:09, Martin Zobel-Helas wrote:
  ifconfig eth0 10.24.0.1 netmask 255.255.255.0
  apt-get install tftpd
 
 Ahhh!
 
  $ apt-cache show tftpd
  ...
  Tftpd is not suitable for use with the PXE bootloader; for that, use atftpd 
  or tftpd-hpa.

same problem with atftpd, it also just shows me the grub menu after a while. 

for tftpd-hpa it is even worse:

|  boot f0
| 
| Intel(R) Boot Agent GE v1.3.72
| Copyright (C) 1997-2010, Intel Corporation
| 
| CLIENT MAC ADDR: 00 00 24 CE 6E B8
 
| CLIENT IP: 10.24.0.10  MASK: 255.255.255.0  DHCP IP: 10.24.0.1
 
| TFTP. 
 
| PXE-M0F: Exiting Intel Boot Agent.
| 
| No Boot device available, enter monitor.
| 
| 
| comBIOS Monitor.   Press ? for help.

 
 I really think that belongs in a NEWS file and shown during install.
 After all, what is *the* most common reason for anyone to install a
 tftpd these days...
 
 Did you also try to netboot a GNU/Linux d-i from this tftpd?

works perfectly fine with tftpd. I just would like to have kfreebsd on that 
soekris! :)

-- 
 Martin Zobel-Helas zo...@debian.orgDebian System Administrator
 Debian  GNU/Linux Developer   Debian Listmaster
 http://about.me/zobel   Debian Webmaster
 GPG Fingerprint:  6B18 5642 8E41 EC89 3D5D  BDBB 53B1 AC6D B11B 627B 


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#695500: debian-installer-7.0-netboot-kfreebsd-amd64: does not boot from pxe - still reproduceable

2013-02-20 Thread Martin Zobel-Helas
Hi, 

On Thu Feb 21, 2013 at 07:39:34 +0100, Martin Zobel-Helas wrote:
 same problem with atftpd, it also just shows me the grub menu after a while. 

s/menu/prompt/

Cheers,
Martin

-- 
 Martin Zobel-Helas zo...@debian.orgDebian System Administrator
 Debian  GNU/Linux Developer   Debian Listmaster
 http://about.me/zobel   Debian Webmaster
 GPG Fingerprint:  6B18 5642 8E41 EC89 3D5D  BDBB 53B1 AC6D B11B 627B 


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org