Hi Andreas,

there are two ways to (or more) configure a setup with two PXE servers.

The first one.
Let's call this "mutual exclusion" by two proxy DHCP.

- the other PXE server (/WDS) also needs to run a Proxy DHCP --> 
http://de.wikipedia.org/wiki/Preboot_Execution_Environment#Proxy_DHCP
- the openthinclient server will only offer a pxe-boot to clients you've 
accepted and configured. All other request will bei ignored.
- the other PXE server (WDS) has to act in the same way
- You do not need to set any option on your dhcp-server!

The second one.
Things are controlled by your DHCP server.

- have two classes (ranges) of machines configured in your dhcpd
- one class is instructed to boot OTC, the other WDS
- you need to set 66,67 for each class
- you can also have clients automatically assigned to one of the classes by 
their mac-adresses

Example, if you have hundreds of the same client modell, their MACs will 
usually start with then same byte pattern.

class "SomeClientModell" {
         match if (
                 (substring(hardware, 1, 3) = 00:02:d3) or
                 (substring(hardware, 1, 3) = 00:4f:18)
         );

          # DHCP options 66/67
         option tftp-server-name "http://192.168.1.130:80";;
         option bootfile-name "./pxelinux.0;

         default-lease-time 2764800;  # 32 days
         max-lease-time     3024000;  # 35 days
}

hth!

Jörn


-- 
Jörn Frenzel

Development & Support

openthinclient gmbh, Büro Dresden
Frühlingstr. 11, 01099 Dresden, Deutschland
mailto:j.fren...@openthinclient.com

openthinclient gmbh
Heilbronner Str. 150, 70191 Stuttgart, Deutschland
Amtsgericht Stuttgart: HRB 245 177; USt-ID: DE216017092
Geschäftsführer: Alexander Stecher
http://openthinclient.com

On 21.06.2013 07:44, Andreas Mayer wrote:
> Hello,
>
> my problem seems to be, that I need to different PXE Servers. On for the
> Windows Deployment Services (WDS) to deploy Windows XP and Windows 7 to
> my fat clients. The startfile is on the Domain Controller. And the
> seccond PXE Server ist the Terminalserver where the pxelinux.0 for the
> thinclient ist.
> Is there a way to configer this?
>
> Thanks,
>
> Andreas
>
>

------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
The Open Source Thin Client Solution http://openthinclient.org
openthinclient-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openthinclient-user

Reply via email to