Tarek Kilani wrote:
> Hi People,
> I'm new to this community and to mailing lists, so if there is something
> that I missed let me know.
> I have used the nice tutorial of
> http://webfolder.wirelessleiden.nl/www.ultradesic.com/index98e4.html?section=45
> where I have reached to the part where I enter "boot f0", and I get:
> 
> NSC DP83815/DP83816 Fast Ethernet UNDI, v1.03
> 
> Copyright (C) 2002, 2003 National Semiconductor Corporation
> All rights reserved.
> 
> Pre-boot eXecution Environment  PXE-2.0 (build 082)
> Copyright (C) 1997-2000  Intel Corporation
> 
> 
> CLIENT MAC ADDR: 00 00 24 C3 5E 50
> CLIENT IP: 192.168.1.4  MASK: 255.255.255.0  DHCP IP: 192.168.1.10
> 
> ==========================END===================

Using tcpdump from the IP 192.168.1.10 would be your best friend here, 
particularly like:

tcpdump \( broadcast or host 192.168.1.4 \) and \( udp port bootpc or 
udp port tftp \)


For me this gives:

17:14:52.434969 IP 0.0.0.0.bootpc > 255.255.255.255.bootps: BOOTP/DHCP, 
Request from 00:00:24:e8:93:8c, length: 548
17:14:53.001228 IP 172.16.32.2.bootps > 255.255.255.255.bootpc: 
BOOTP/DHCP, Reply, length: 300
17:14:55.450458 IP 0.0.0.0.bootpc > 255.255.255.255.bootps: BOOTP/DHCP, 
Request from 00:00:24:e8:93:8c, length: 548
17:14:55.496648 IP 172.16.32.2.bootps > 255.255.255.255.bootpc: 
BOOTP/DHCP, Reply, length: 300
17:14:55.645053 IP 172.16.32.209.2070 > 172.16.32.2.tftp:  42 RRQ 
"X86PC/pxelinux/pxelinux.0" octet tsize 0
17:14:55.696081 IP 172.16.32.209.2071 > 172.16.32.2.tftp:  47 RRQ 
"X86PC/pxelinux/pxelinux.0" octet blksize 1456
17:15:01.948645 IP 172.16.32.209.57089 > 172.16.32.2.tftp:  78 RRQ 
"X86PC/pxelinux/pxelinux.cfg/01-00-00-24-e8-93-8c" oct
17:15:01.987275 IP 172.16.32.209.57090 > 172.16.32.2.tftp:  53 RRQ 
"X86PC/pxelinux/menu.c32" octet tsize 0 blksize 1440
17:15:02.000046 IP 172.16.32.209.57091 > 172.16.32.2.tftp:  78 RRQ 
"X86PC/pxelinux/pxelinux.cfg/01-00-00-24-e8-93-8c" oct

Intel UNDI, PXE-2.0 (build 082)
Copyright (C) 1997,1998,1999  Intel Corporation
VIA Rhine III Management Adapter v2.43 (2005/12/15)

CLIENT MAC ADDR: 00 00 24 e8 93 8C
CLIENT IP: 172.16.32.209  MASK: 255.255.255.0  DHCP IP: 172.16.32.2 

GATEWAY IP: 172.16.32.1
 




Do you have a TFTP server running on the server at 192.168.1.10 (or you 
can configure to an alternative IP via some DHCP options in the DHCP 
response that is being given out) ?


For me I have ISC dhcpd with the configuration directives (and booting 
syslinux http://syslinux.zytor.com/wiki/index.php/PXELINUX ):
  server-identifier 172.16.32.2;
  server-name TYR;
  next-server 172.16.32.2;
  filename "X86PC/pxelinux/pxelinux.0";

This instructs PXE the next file to load over TFTP and then execute is 
"X86PC/pxelinux/pxelinux.0"


I'm sure there are *BSD related notes on how to setup PXE to install *BSD.


Darryl
_______________________________________________
Soekris-tech mailing list
[email protected]
http://lists.soekris.com/mailman/listinfo/soekris-tech

Reply via email to