LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 06-06-2005, 08:28 AM   #1
ssharma_02
LQ Newbie
 
Registered: Aug 2004
Location: Kanpur
Distribution: SuSE
Posts: 12

Rep: Reputation: 0
pxe boot "PXE-T01 file not found"


I was trying to build up a pxe based booting system on my network which has a dhcp server. I am trying setting up a pxe server which would have tftp service and pxelinux.0 file

On running the client i found the following error :
PXE-T01: file not found
PXE-E3B-TFTP Error file not found
PXE-M0F exiting Intel boot agent

I have checked the tftp service that runs fine on the system , what could be the probable error , the dhcpd.conf also seems to be OK.
 
Old 06-07-2005, 05:34 AM   #2
ssharma_02
LQ Newbie
 
Registered: Aug 2004
Location: Kanpur
Distribution: SuSE
Posts: 12

Original Poster
Rep: Reputation: 0
Cool

The problem is solved, i made a few changes in my dhcp.conf file and it worked , my dhcp conf file now looks like this

1 option domain-name "cse.iitk.ac.in cc.iitk.ac.in iitk.ac.in junta.iitk.ac.in";
2 #option domain-name "cse.iitk.ac.in";
3 option domain-name-servers dns.cse.iitk.ac.in, dnsbak.cse.iitk.ac.in, 172.31.1 .1;
4 option routers 172.27.16.254;
5 option subnet-mask 255.255.240.0;
6 option netbios-name-servers 172.27.16.7;
7 option nis-domain "cse";
8 option smtp-server 172.27.16.2;
9 default-lease-time 600;
10 max-lease-time 7200;
11 next-server 172.27.17.48; # this was the address of my PXE server
12 use-host-decl-names on;
13 filename "linux-install/pxelinux.0"; # this line made the diff my earlier file name was /tftpboot/linux-install/pxelinux.0

14
15 subnet 172.27.16.0 netmask 255.255.240.0 {
16 }
Thus a minor correction in line 13 made all the difference
 
Old 09-26-2006, 09:45 AM   #3
faceman44
LQ Newbie
 
Registered: Sep 2006
Posts: 2

Rep: Reputation: 0
I have been looking all over the web for a solution to this issue.

Thanks, this fix did the trick.
 
Old 02-20-2007, 03:14 PM   #4
registering
Member
 
Registered: Jun 2003
Location: Florida, USA
Distribution: Drake 10.1 Download
Posts: 182

Rep: Reputation: 30
I agree: THANK YOU! This fixed my problem too!
 
Old 11-11-2008, 02:14 AM   #5
sharu99
LQ Newbie
 
Registered: Oct 2008
Posts: 15

Rep: Reputation: 0
Smile

Quote:
Originally Posted by registering View Post
I agree: THANK YOU! This fixed my problem too!
Thanks.... This fixed my problem....
 
Old 05-20-2009, 09:38 PM   #6
quincysan
LQ Newbie
 
Registered: May 2009
Posts: 2

Rep: Reputation: 0
This is sooo close

I get this exact same error on FC10 running FOG 0.26. I've checked dhcp conf, and it is simply "filename=pxelinux.0". I assume this is correct because I don't have the "linux-install" subdirectory. I am using a windows server for DHCP and I have configured items 066 and 067 properly in Scope Options.

Has anyone run into this problem and had success with another solution?
 
Old 05-20-2009, 09:40 PM   #7
quincysan
LQ Newbie
 
Registered: May 2009
Posts: 2

Rep: Reputation: 0
...it was caps lock. HAH I actually had "PXEBOOT.0" on my windows server. I feel like a doof. Good thread anyway!
 
Old 07-20-2009, 09:58 AM   #8
metaljed
LQ Newbie
 
Registered: Apr 2009
Posts: 3

Rep: Reputation: 0
Hi Guys,

Where is my DHCP.conf located?

I've tried sudo nano /etc/dhcp.conf

Thanks,

Jed
 
Old 07-21-2009, 09:15 AM   #9
faceman44
LQ Newbie
 
Registered: Sep 2006
Posts: 2

Rep: Reputation: 0
Metaljed,

First the system must be setup as a DHCP server. Then the file you will need to edit is /etc/dhcpd.conf.

Face
 
Old 01-25-2010, 06:27 PM   #10
jenaniston
LQ Newbie
 
Registered: Jan 2010
Location: Malibu, California
Distribution: Fedora 13 KDE
Posts: 16

Rep: Reputation: 0
Quote:
Originally Posted by quincysan View Post
... HAH . . . I feel like a doof. Good thread anyway!
I was sooooo... happy to see this error
Code:
PXE-T01: /tftpboot/ploplinux/ploplinux/pxelinux.0 not found
PXE-E3B: TFTP Error - File not found
In F12 KDE live I ended up using the bundled dnsmasq server - (a lightweight combination dhcp/bootp/tftp server)
only for the bootp/tftp server part (dnsmasq 2.48-4.fc12 i686 (281k).

The yum installed tftp-server (0.49-5.fc12 i686) I just could NOT get to send the bootfile along -
some firewall iptables inserts helped it get a little farther -
but I spent days in snort and tcpdump figuring out what ports were the holdup - yada yada yada.

When I very first tried this dnsmasq server by itself I didn't get the config right to get the DHCP offer
Code:
No DHCP or DHCPproxy offers received
yet the service dnsmasq status was definitely running . . .
(to a Sharp AL27 MobileAMD 64 laptop using Intel UNDI, PXE-2.0 build 082) . . .
so I turned on the F12 dhcpd server (4.1.0p1-13.fc12 i686 (2.1M) just to do the dhcp offer part . . . and to my amazement

. . . Voila ! . . . I see this beautiful error!

So, my very last LAN boot error message . . . a double posting of /ploplinux/ in the path -
a simple fix !

Good thread anyway!
 
Old 02-08-2010, 05:43 PM   #11
sbtiwari
LQ Newbie
 
Registered: Jun 2009
Posts: 8

Rep: Reputation: 0
Hi,

I am using Debian as my OS. My tftp server is running fine. The pxelinux file actually present on server X but served via NFS to a server Y which is my tftp server. I get this error while pxe booting another client. Is there any way I can get rid of this error?

Thanks,
Cheers,
Swati
 
Old 02-08-2010, 06:00 PM   #12
sbtiwari
LQ Newbie
 
Registered: Jun 2009
Posts: 8

Rep: Reputation: 0
Hi,

Also, I wanted to ask, what is the correct syntax of providing the path of the pxelinux file in the dhcp.conf file? Does it have to be the absolute path of the file. For example, in my case the path is

/srv/tftp/fai/pzelinux.0

Does that mean, the entry in the dhcp file must be

filename /srv/tftp/fai/pxelinux.0 ?

Thanks a ton!
Cheers,
Swati
 
Old 03-11-2010, 07:41 AM   #13
vision2
LQ Newbie
 
Registered: Mar 2010
Posts: 1

Rep: Reputation: 0
Hello,

I have got the same problem:

PXE-T01: file not found
PXE-E3B-TFTP Error file not found
PXE-M0F exiting Broadcom PXE ROM.

my dhcpd.conf is located in: "/etc/dhcp3/dhcp3.conf"
my pxelinux0 is located in: "/tftpboot/pxelinux.0"

I´m a Linux-Newb and tried to google myself through this problem but I´m some kind of stuck at this point.

I hve already tried the following entrys:

filename "pxelinux.0"; <-- I also copied the file to the directory of the dhcp3.conf

filename "/tftpboot/pxelinux.0";
filename "/../../tftpboot/pxelinux.0";
filename "../../tftpboot/pxelinux.0";
filename "/~/tftpboot/pxelinux.0";
filename "~/tftpboot/pxelinux.0";

After I edited the config, I always used "sudo/etc/init.d/dhcp3-server restart"
I hope this enought to load the whole file again and use the changes.

What am I doing wrong?
 
Old 05-13-2010, 09:29 AM   #14
jbird80
LQ Newbie
 
Registered: Jul 2005
Location: Maryland
Posts: 6

Rep: Reputation: 0
vision2, Check /etc/default/tftpd-hpa

and make sure TFTP_DIRECTORY is set to the directory with pxelinux.0


hope this helps.

Last edited by jbird80; 05-14-2010 at 12:21 PM.
 
Old 06-30-2010, 10:25 PM   #15
kapshure
LQ Newbie
 
Registered: Mar 2010
Posts: 29

Rep: Reputation: 1
pxe boot "PXE-T01 file not found"

I dont want to hijack anyones thread, but I'm also having the same problem and was wondering if I can post here, or should I start another thread?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Unable to boot with PXE managed.service Linux - Enterprise 1 10-18-2005 11:28 AM
"Successful install" results in "Boot device not found" slackr007 Fedora 2 06-21-2005 04:05 PM
"Successful install" results in "Boot device not found" slackr007 Linux - Newbie 2 05-31-2005 08:02 PM
PXE no client boot ACID25 Linux - Networking 0 05-31-2005 05:36 AM
tftpd pxe-01 file not found on terminal fitzy85 Linux - Networking 1 08-11-2004 01:16 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 04:39 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration