Post Reply 
 
Thread Rating:
  • 1 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[SOLVED] : iPXE and WDS Config
2013-08-29, 01:55
Post: #19
RE: [SOLVED] : iPXE and WDS Config
For me this helped to get a first successfull boot - client and wds in different subnets. I want to share it:

WDS: 10.10.10.10 subnet /24 [windows 2012 server]
clients in subnet 10.10.90.0/24 [test VMs]
ISC DHCP 10.10.90.1
Linux tftp 10.10.90.1

It is little dirty but it is a base to build a menu around it:
- hit ctrl+b when iPXE starts booting
- type 2 commands:
dhcp
boot wds

wds - put on root of tftp:
Code:
#!ipxe
set user-class wds
autoboot

isc dhcp:
Code:
.....
if exists user-class and option user-class = "wds" {
        next-server 10.10.10.10;
        filename "boot\\x86\\wdsnbp.com";
}
else
{  
        filename "undionly.kpxe";
        next-server 10.10.90.1;
}
        .....

I am posting this because getting to work wds from another subnet was a nightmare for me.
I also noticed that with some PXE implementations ovveriding from iPXE like:
set next-server 10.10.10.10
set dhcp/next-server 10.10.10.10
does not give any effects wdsnbp.com still try to boot from 10.10.90.1 instead of 10.10.10.10.

I was unable to boot wds without giving the next-server via dhcp.
I had not success trying to chainload wds with other methods.

Regards,
BZ
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: iPXE and WDS Config - Sha0 - 2012-11-08, 20:22
RE: iPXE and WDS Config - Sedorox - 2012-11-09, 04:31
RE: iPXE and WDS Config - Alphakarem - 2012-11-09, 15:09
RE: iPXE and WDS Config - Alphakarem - 2012-11-11, 01:09
iPXE and WDS Config - sebus - 2016-02-04, 11:26
RE: [SOLVED] : iPXE and WDS Config - EvilBart - 2013-08-29 01:55



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