Post Reply 
 
Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
alternative dhcp server?
2011-04-06, 05:02 (This post was last modified: 2011-04-06 13:44 by Sha0.)
Post: #3
RE: alternative dhcp server?
(2011-04-06 01:29)AT-HE Wrote:  anyone knows an alternative dhcp server for windows?
Alternative to what?

Included on Windows XP's installation disc is the TFTPD.EX_ file, which you can expand thusly:
Code:
expand d:\i386\tftpd.ex_ c:\windows\system32\tftpd.exe

You may then install this MS TFTP service with something like:
Code:
sc create TFTPD binPath= C:\Windows\System32\TFTPD.EXE depend= tcpip DisplayName= "TFTP Service"
net start tftpd

(Note the spaces are intentional and required.)

(2011-04-06 01:29)AT-HE Wrote:  - must support ipxe chainloading
A handy feature iPXE has is support for embedded scripts. An embedded script can then download another script, based on some client-specific parameters.

my_script.ipxe:
Code:
#!ipxe
dhcp net0
chain tftp://${next-server}/${ip}.ipxe

192.168.0.101.ipxe:
Code:
#!ipxe
echo Welcome, AT-HE!
...

To build this iPXE NBP payload:
Code:
cd ipxe/src/
make EMBEDDED_IMAGE=my_script.ipxe bin/ipxe.pxe

--- EDIT ---

I'm sorry, I misread "dhcp server" as "TFTP server". Never mind. Smile
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
alternative dhcp server? - AT-HE - 2011-04-06, 01:29
RE: alternative dhcp server? - mcb30 - 2011-04-06, 01:55
RE: alternative dhcp server? - Sha0 - 2011-04-06 05:02
RE: alternative dhcp server? - AT-HE - 2011-04-06, 14:06
RE: alternative dhcp server? - mcb30 - 2011-04-07, 15:12
RE: alternative dhcp server? - Sha0 - 2011-04-07, 18:43
RE: alternative dhcp server? - AT-HE - 2011-04-07, 19:15
RE: alternative dhcp server? - Sha0 - 2011-04-07, 20:36
RE: alternative dhcp server? - mcb30 - 2011-04-08, 03:28
RE: alternative dhcp server? - Z.C. - 2011-06-06, 05:38
RE: alternative dhcp server? - AT-HE - 2011-07-26, 18:17
RE: alternative dhcp server? - patpat - 2011-08-25, 16:14
RE: alternative dhcp server? - AT-HE - 2011-11-02, 03:03
RE: alternative dhcp server? - mcb30 - 2011-11-03, 13:14



User(s) browsing this thread: 1 Guest(s)