Reply to Message

View discussion in a popup

Replying to:
_the_dude_
Enthusiast
Enthusiast

Thrakorzog,

First of all, good thing you solved the mounting problem mystery! It would be better indeed if things like this were in some kind of documentation. Any help there would be highly appreciated!

Now for your dhcp question: It should be possible to use another DHCP server on your network. You would need to disable the dhcp server on startup (/sbin/chkconfig --level 3 off) on the UDA. And make sure the other DHCP server responds to IP requests properly (it probably already does) and it also repsonds to PXE requests. You would need a DHCP configuration which mimics the following settings:

if substring ( option vendor-class-identifier, 0, 9) = "PXEClient"

{

filename "pxelinux.0" ;

next-server 10.0.0.104 ;

}

What happens in these setting is that the PXE client is instructed to download the file pxelinux.0 in the root of the tftpserver directory on the server 10.0.0.104. Any DHCP server should be able to 'serve' these options.

Good luck!

Reply
0 Kudos