View Full Version : PXE Booting?
stloyesent
18th February 2011, 10:32 AM
Hello.
I'm trying to set up a PXE boot server on a spare machine we have at work and i've hit a brick wall i think.
I've set up the DHCP as much as i think i should have and i think i've set up the tftp-server but on the client machine im getting "PXE-E53 - No filename received" (or something similar).
I kind of don't know what I should be doing now.
Before I started doing this at work, i knew nothing about PXE booting.
Any help would be appreciated!!
Thanks in advance
CSchwangler
19th February 2011, 08:24 AM
Maybe this helps
http://www.bootix.de/support/problems_solutions/pxe_e53_no_boot_filename_received.html
stloyesent
21st February 2011, 03:13 PM
Hi, sorry for the late reply, i lost the thread haha.
I've had a look at the link and I kind of know that anyway I'm just a bit confused about whats going on with the filename. I've got it in the dhcpd.conf and i've copied it into another folder which i forgot which one.
Is there any chance someone could sort of list which files i need where, and how they are linked?
Any help is greatly appreciated from my company
DBelton
21st February 2011, 04:23 PM
your boot image files should be located wherever you have your tftp set to look for them. the default in Fedora has it set to /var/lib/tftpboot.
This can be changed or confirmed by looking in your /etc/xinetd.d/tftp file at the server_args setting in there.
And then when you pass the boot image filename it is relative to the path specified in the server_args.
for example if your server_args is set to /var/lib/tftpboot and your you have a boot image called pxelinux and you put it in the /var/lib/tftpboot folder, then you would specify the filename as pxelinux. If you have it in a folder called /var/lib/tftpboot/linuxboot the you would specify it as as linuxboot/pxelinux.
stloyesent
21st February 2011, 04:50 PM
thanks for the great reply.
I will be looking into that at work.
THing that is confusing me is, that in the guide, it tells me to make the filename "pxelinux.0" and then copy that into some folder which i forgot, what is the thing with this file?
SiliconSlick
21st February 2011, 05:10 PM
If you are trying to set up a Fedora install server, see:
http://docs.fedoraproject.org/en-US/Fedora/14/html/Installation_Guide/sn-pxe-server-manual.html
An older one is here:
http://docs.fedoraproject.org/en-US/Fedora/7/html/Installation_Guide/ap-pxe-server.html
You might look through them anyways for details. Make sure all the services (dhcpd/tftp-server/xinetd) are started on boot. Make sure you have changed "disable" to "no" in the tftp-server config file. etc. etc.
You might also consider posting your /etc/dhcp/dhcpd.conf and /etc/xinetd.d/tftp files and any output concerning dhcp, tftp or xinetd in /var/log/messages (or any other log files). e.g.
grep -e dhcp -e tftp -e xinetd /var/log/*
if it isn't too much.
You should also indicate what type of PXE image you are trying to serve.
SS
p.s. You should also provide the output of:
ls -al /var/lib/tftpboot
stloyesent
21st February 2011, 07:34 PM
Hi, thanks for reply.
I will post all the files when I get in to work tomorrow.
How do I make sure they all run on start-up?
At the moment I haven't got any images there to boot, I was just hoping I would get a menu to come up, then I would have gone from there. Is this possible?
stloyesent
22nd February 2011, 09:22 AM
Hello
Here are my file contents:
/etc/dhcp/dhcpd.conf
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.10 192.168.1.100;
range 192.168.1.150 192.168.1.200;
default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option routers 192.168.1.254;
option domain-name-servers 192.168.1.1, 192.168.1.2;
option domain-name "stloyes.pxe";
}
host pxelinux {
hardware ethernet 00:0E:A6:5C:12:0B;
fixed-address 192.168.1.64;
filename "/pxelinux.0";
next-server 192.168.0.1;
always-broadcast on;
}
/etc/xinetd.d/tftp
# default: off
# description: The tftp server serves files using the trivial file transfer \
# protocol. The tftp protocol is often used to boot diskless \
# workstations, download configuration files to network-aware printers, \
# and to start the installation process for some operating systems.
service tftp
{
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /var/lib/tftpboot
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
/var/log/messages
I can't actual get the contents of this file? Are there any ways of getting the contents out?
stevea
22nd February 2011, 01:08 PM
Nothing wrong with what you are doing BUT you may want to consider using dnsmasq since this single tool incorporates the dhcp service and tftp service. You might need some config lines like
dhcp-boot=pxelinux.0,myserver,192.168.2.2
dhcp-host=00:19:31:99:44:42,myclient,192.168.2.77
stloyesent
22nd February 2011, 03:21 PM
hi thanks for your reply.
i went into the add/remove software and its there already installed apparently.
Where do i access this program from?
thanks
stevea
25th February 2011, 09:26 AM
dnsmasq has a config file in /etc/dnsmasq.conf /etc/dnsmasq.d/*
Normally you'd make your local config for dns n a file like /etc/dnsmasq.d/local.conf
You can start a dnsmasq service at boot with
chkconfig dnsmasq on
service dnsmasq start
stloyesent
25th February 2011, 09:52 AM
Thanks for that.
I think the most of the problem im having is the fact im not sure that i have all the conf files etc in the right places for it to work properly. because im stil getting the filename not received error so i am really confused about it all.
Idealy i could do with a kind of list of what i need to have done and where it needs to be.
SiliconSlick
25th February 2011, 12:55 PM
0
/var/log/messages
I can't actual get the contents of this file? Are there any ways of getting the contents out?
You have to be root in order to read the file.
sudo grep -e dhcp -e tftp -e xinetd /var/log/* # if you have sudo set up
su -c "grep -e dhcp -e tftp -e xinetd /var/log/*" # if you don't
SS
stloyesent
25th February 2011, 03:07 PM
Hello
OK i got the contents of that log
I hope it isnt too much haha
Here First half:
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: Wrote 0 leases to leases file.
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: Listening on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: Sending on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: Sending on Socket/fallback/fallback-net
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: There's already a DHCP server running.
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: This version of ISC DHCP is based on the release available
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: on ftp.isc.org. Features have been added and other changes
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: have been made to the base software release in order to make
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: it work better with this distribution.
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: Please report for this software via the Red Hat Bugzilla site:
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: http://bugzilla.redhat.com
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:29:26 localhost dhcpd: exiting.
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: Internet Systems Consortium DHCP Server 4.2.0-P2
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: Copyright 2004-2010 Internet Systems Consortium.
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: All rights reserved.
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: Wrote 0 deleted host decls to leases file.
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: Wrote 0 new dynamic host decls to leases file.
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: Wrote 0 leases to leases file.
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: Listening on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: Sending on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: Sending on Socket/fallback/fallback-net
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: There's already a DHCP server running.
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: This version of ISC DHCP is based on the release available
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: on ftp.isc.org. Features have been added and other changes
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: have been made to the base software release in order to make
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: it work better with this distribution.
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: Please report for this software via the Red Hat Bugzilla site:
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: http://bugzilla.redhat.com
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:12 localhost dhcpd: exiting.
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: Internet Systems Consortium DHCP Server 4.2.0-P2
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: Copyright 2004-2010 Internet Systems Consortium.
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: All rights reserved.
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: Wrote 0 deleted host decls to leases file.
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: Wrote 0 new dynamic host decls to leases file.
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: Wrote 0 leases to leases file.
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: No subnet declaration for eth1 (no IPv4 addresses).
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: ** Ignoring requests on eth1. If this is not what
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: you want, please write a subnet declaration
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: in your dhcpd.conf file for the network segment
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: to which interface eth1 is attached. **
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: Not configured to listen on any interfaces!
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: This version of ISC DHCP is based on the release available
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: on ftp.isc.org. Features have been added and other changes
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: have been made to the base software release in order to make
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: it work better with this distribution.
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: Please report for this software via the Red Hat Bugzilla site:
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: http://bugzilla.redhat.com
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:19 localhost dhcpd: exiting.
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: Internet Systems Consortium DHCP Server 4.2.0-P2
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: Copyright 2004-2010 Internet Systems Consortium.
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: All rights reserved.
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: Wrote 0 deleted host decls to leases file.
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: Wrote 0 new dynamic host decls to leases file.
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: Wrote 0 leases to leases file.
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: Listening on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: Sending on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: Sending on Socket/fallback/fallback-net
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: There's already a DHCP server running.
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: This version of ISC DHCP is based on the release available
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: on ftp.isc.org. Features have been added and other changes
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: have been made to the base software release in order to make
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: it work better with this distribution.
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: Please report for this software via the Red Hat Bugzilla site:
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: http://bugzilla.redhat.com
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:22 localhost dhcpd: exiting.
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: Internet Systems Consortium DHCP Server 4.2.0-P2
stloyesent
25th February 2011, 03:08 PM
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: Copyright 2004-2010 Internet Systems Consortium.
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: All rights reserved.
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: Wrote 0 deleted host decls to leases file.
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: Wrote 0 new dynamic host decls to leases file.
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: Wrote 0 leases to leases file.
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: No subnet declaration for restart (no IPv4 addresses).
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: ** Ignoring requests on restart. If this is not what
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: you want, please write a subnet declaration
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: in your dhcpd.conf file for the network segment
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: to which interface restart is attached. **
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: Not configured to listen on any interfaces!
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: This version of ISC DHCP is based on the release available
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: on ftp.isc.org. Features have been added and other changes
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: have been made to the base software release in order to make
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: it work better with this distribution.
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: Please report for this software via the Red Hat Bugzilla site:
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: http://bugzilla.redhat.com
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:32:34 localhost dhcpd: exiting.
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: Internet Systems Consortium DHCP Server 4.2.0-P2
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: Copyright 2004-2010 Internet Systems Consortium.
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: All rights reserved.
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: Wrote 0 deleted host decls to leases file.
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: Wrote 0 new dynamic host decls to leases file.
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: Wrote 0 leases to leases file.
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: No subnet declaration for start (no IPv4 addresses).
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: ** Ignoring requests on start. If this is not what
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: you want, please write a subnet declaration
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: in your dhcpd.conf file for the network segment
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: to which interface start is attached. **
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: Not configured to listen on any interfaces!
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: This version of ISC DHCP is based on the release available
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: on ftp.isc.org. Features have been added and other changes
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: have been made to the base software release in order to make
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: it work better with this distribution.
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: Please report for this software via the Red Hat Bugzilla site:
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: http://bugzilla.redhat.com
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:34:32 localhost dhcpd: exiting.
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: Internet Systems Consortium DHCP Server 4.2.0-P2
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: Copyright 2004-2010 Internet Systems Consortium.
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: All rights reserved.
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: Wrote 0 deleted host decls to leases file.
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: Wrote 0 new dynamic host decls to leases file.
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: Wrote 0 leases to leases file.
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: Listening on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: Sending on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: Sending on Socket/fallback/fallback-net
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: There's already a DHCP server running.
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: This version of ISC DHCP is based on the release available
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: on ftp.isc.org. Features have been added and other changes
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: have been made to the base software release in order to make
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: it work better with this distribution.
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: Please report for this software via the Red Hat Bugzilla site:
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: http://bugzilla.redhat.com
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:34:53 localhost dhcpd: exiting.
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: Internet Systems Consortium DHCP Server 4.2.0-P2
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: Copyright 2004-2010 Internet Systems Consortium.
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: All rights reserved.
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: Wrote 0 deleted host decls to leases file.
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: Wrote 0 new dynamic host decls to leases file.
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: Wrote 0 leases to leases file.
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: Listening on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: Sending on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: Sending on Socket/fallback/fallback-net
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: There's already a DHCP server running.
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: This version of ISC DHCP is based on the release available
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: on ftp.isc.org. Features have been added and other changes
stloyesent
25th February 2011, 03:08 PM
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: have been made to the base software release in order to make
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: it work better with this distribution.
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: Please report for this software via the Red Hat Bugzilla site:
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: http://bugzilla.redhat.com
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd:
/var/log/messages-20110222:Feb 17 15:35:32 localhost dhcpd: exiting.
/var/log/messages-20110222:Feb 17 15:36:56 localhost dhclient[4349]: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 17 15:45:47 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 15:45:48 localhost dhcpd: DHCPOFFER on 192.168.1.10 to 00:25:64:ee:38:f1 (Dell) via eth0
/var/log/messages-20110222:Feb 17 15:47:01 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 15:47:02 localhost dhcpd: DHCPOFFER on 192.168.1.11 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 15:47:06 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 15:47:07 localhost dhcpd: DHCPOFFER on 192.168.1.12 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 15:47:14 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 15:47:15 localhost dhcpd: DHCPOFFER on 192.168.1.13 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 15:47:46 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 15:47:47 localhost dhcpd: DHCPOFFER on 192.168.1.14 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:08:14 localhost xinetd[1446]: Exiting...
/var/log/messages-20110222:Feb 17 16:08:14 localhost xinetd[4760]: Service tftp: attribute already set: disable [file=/etc/xinetd.d/tftp] [line=15]
/var/log/messages-20110222:Feb 17 16:08:14 localhost xinetd[4760]: xinetd Version 2.3.14 started with libwrap loadavg labeled-networking options compiled in.
/var/log/messages-20110222:Feb 17 16:08:14 localhost xinetd[4760]: Started working: 1 available service
/var/log/messages-20110222:Feb 17 16:20:27 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:20:28 localhost dhcpd: DHCPOFFER on 192.168.1.15 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:20:31 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:20:32 localhost dhcpd: DHCPOFFER on 192.168.1.16 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:20:40 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:20:41 localhost dhcpd: DHCPOFFER on 192.168.1.17 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:21:12 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:21:13 localhost dhcpd: DHCPOFFER on 192.168.1.18 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:23:11 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:23:12 localhost dhcpd: DHCPOFFER on 192.168.1.19 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:23:15 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:23:16 localhost dhcpd: DHCPOFFER on 192.168.1.20 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:23:24 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:23:25 localhost dhcpd: DHCPOFFER on 192.168.1.21 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:23:56 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:23:57 localhost dhcpd: DHCPOFFER on 192.168.1.22 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:44:38 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:44:39 localhost dhcpd: DHCPOFFER on 192.168.1.23 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:44:42 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:44:43 localhost dhcpd: DHCPOFFER on 192.168.1.24 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:44:51 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:44:52 localhost dhcpd: DHCPOFFER on 192.168.1.25 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:45:23 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:45:24 localhost dhcpd: DHCPOFFER on 192.168.1.26 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:47:19 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:47:20 localhost dhcpd: DHCPOFFER on 192.168.1.27 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:47:24 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:47:25 localhost dhcpd: DHCPOFFER on 192.168.1.28 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:47:32 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:47:33 localhost dhcpd: DHCPOFFER on 192.168.1.29 to 00:25:64:ee:38:f1 via eth0
/var/log/messages-20110222:Feb 17 16:59:30 localhost xinetd[4760]: Exiting...
/var/log/messages-20110222:Feb 18 08:50:10 localhost xinetd[1313]: Service tftp: attribute already set: disable [file=/etc/xinetd.d/tftp] [line=15]
/var/log/messages-20110222:Feb 18 08:50:10 localhost xinetd[1313]: xinetd Version 2.3.14 started with libwrap loadavg labeled-networking options compiled in.
/var/log/messages-20110222:Feb 18 08:50:10 localhost xinetd[1313]: Started working: 1 available service
/var/log/messages-20110222:Feb 18 08:51:01 localhost dhclient[2016]: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 18 09:39:30 localhost xinetd[1313]: Exiting...
/var/log/messages-20110222:Feb 18 09:39:30 localhost xinetd[10478]: Service tftp: attribute already set: disable [file=/etc/xinetd.d/tftp] [line=15]
/var/log/messages-20110222:Feb 18 09:39:30 localhost xinetd[10478]: xinetd Version 2.3.14 started with libwrap loadavg labeled-networking options compiled in.
/var/log/messages-20110222:Feb 18 09:39:30 localhost xinetd[10478]: Started working: 1 available service
/var/log/messages-20110222:Feb 18 09:39:48 localhost dhcpd: Internet Systems Consortium DHCP Server 4.2.0-P2
/var/log/messages-20110222:Feb 18 09:39:48 localhost dhcpd: Copyright 2004-2010 Internet Systems Consortium.
/var/log/messages-20110222:Feb 18 09:39:48 localhost dhcpd: All rights reserved.
/var/log/messages-20110222:Feb 18 09:39:48 localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 18 09:39:48 localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
/var/log/messages-20110222:Feb 18 09:39:48 localhost dhcpd: Wrote 0 deleted host decls to leases file.
/var/log/messages-20110222:Feb 18 09:39:48 localhost dhcpd: Wrote 0 new dynamic host decls to leases file.
/var/log/messages-20110222:Feb 18 09:39:48 localhost dhcpd: Wrote 0 leases to leases file.
/var/log/messages-20110222:Feb 18 09:39:48 localhost dhcpd: Listening on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 18 09:39:48 localhost dhcpd: Sending on LPF/eth0/00:0e:a6:5c:12:0b/192.168.1.0/24
/var/log/messages-20110222:Feb 18 09:39:48 localhost dhcpd: Sending on Socket/fallback/fallback-net
/var/log/messages-20110222:Feb 18 09:40:24 localhost dhclient[10517]: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 18 10:04:08 localhost xinetd[10478]: Exiting...
/var/log/messages-20110222:Feb 18 10:04:09 localhost xinetd[10879]: Service tftp: attribute already set: disable [file=/etc/xinetd.d/tftp] [line=15]
/var/log/messages-20110222:Feb 18 10:04:09 localhost xinetd[10879]: xinetd Version 2.3.14 started with libwrap loadavg labeled-networking options compiled in.
/var/log/messages-20110222:Feb 18 10:04:09 localhost xinetd[10879]: Started working: 1 available service
/var/log/messages-20110222:Feb 18 10:20:42 localhost dhcpd: DHCPREQUEST for 192.168.0.10 from 00:25:64:ee:42:4d via eth0: ignored (not authoritative).
/var/log/messages-20110222:Feb 18 10:20:45 localhost dhcpd: DHCPREQUEST for 192.168.0.10 from 00:25:64:ee:42:4d via eth0: ignored (not authoritative).
/var/log/messages-20110222:Feb 18 10:20:50 localhost dhcpd: DHCPREQUEST for 192.168.0.10 from 00:25:64:ee:42:4d via eth0: ignored (not authoritative).
/var/log/messages-20110222:Feb 18 10:21:51 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:42:4d via eth0
stloyesent
25th February 2011, 03:09 PM
/var/log/messages-20110222:Feb 18 10:21:52 localhost dhcpd: DHCPOFFER on 192.168.1.10 to 00:25:64:ee:42:4d via eth0
/var/log/messages-20110222:Feb 18 10:21:55 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:42:4d via eth0
/var/log/messages-20110222:Feb 18 10:21:55 localhost dhcpd: DHCPOFFER on 192.168.1.10 to 00:25:64:ee:42:4d via eth0
/var/log/messages-20110222:Feb 18 10:22:03 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:42:4d via eth0
/var/log/messages-20110222:Feb 18 10:22:03 localhost dhcpd: DHCPOFFER on 192.168.1.10 to 00:25:64:ee:42:4d via eth0
/var/log/messages-20110222:Feb 18 10:22:35 localhost dhcpd: DHCPDISCOVER from 00:25:64:ee:42:4d via eth0
/var/log/messages-20110222:Feb 18 10:22:35 localhost dhcpd: DHCPOFFER on 192.168.1.10 to 00:25:64:ee:42:4d via eth0
/var/log/messages-20110222:Feb 18 13:52:00 localhost dhclient[12373]: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 18 16:47:06 localhost xinetd[10879]: Exiting...
/var/log/messages-20110222:Feb 22 08:53:04 localhost dhclient[1076]: For info, please visit https://www.isc.org/software/dhcp/
/var/log/messages-20110222:Feb 22 08:53:06 localhost xinetd[1288]: Service tftp: attribute already set: disable [file=/etc/xinetd.d/tftp] [line=15]
/var/log/messages-20110222:Feb 22 08:53:06 localhost xinetd[1288]: xinetd Version 2.3.14 started with libwrap loadavg labeled-networking options compiled in.
/var/log/messages-20110222:Feb 22 08:53:06 localhost xinetd[1288]: Started working: 1 available service
/var/log/messages-20110222:Feb 22 09:33:07 localhost xinetd[1288]: Starting reconfiguration
/var/log/messages-20110222:Feb 22 09:33:07 localhost xinetd[1288]: Swapping defaults
/var/log/messages-20110222:Feb 22 09:33:07 localhost xinetd[1288]: readjusting service tftp
/var/log/messages-20110222:Feb 22 09:33:07 localhost xinetd[1288]: Reconfigured: new=0 old=1 dropped=0 (services)
/var/log/secure-20110222:Feb 15 14:13:10 localhost sudo: pxe : user NOT in sudoers ; TTY=pts/0 ; PWD=/home/pxe ; USER=root ; COMMAND=apt-get install dhcp
/var/log/yum.log:Feb 15 14:23:15 Installed: 2:xinetd-2.3.14-32.fc14.i686
/var/log/yum.log:Feb 15 14:23:17 Installed: tftp-server-0.49-7.fc14.i686
/var/log/yum.log:Feb 15 16:34:34 Installed: 12:dhcp-4.2.0-19.P2.fc14.i686
/var/log/yum.log:Feb 17 11:41:47 Installed: tftp-0.49-7.fc14.i686
/var/log/yum.log:Feb 17 11:41:49 Installed: syslinux-tftpboot-4.02-3.fc14.i686
---------- Post added at 03:09 PM ---------- Previous post was at 03:08 PM ----------
Sorry about the length of that
vBulletin® v3.8.7, Copyright ©2000-2013, vBulletin Solutions, Inc.