2

So I'm setting up a windows deployment server on my network.

Peter
  • 133
  • 1
  • 7

1 Answers1

2

Don't forget that you need to open the following ports on the WDS machine:

  • Port 67 (DHCP)
  • Port 69 (TFTP)
  • Port 4011 (PXE)

(Port 67 is still required if your DHCP server is on a different physical machine).

Additionally, I'm not sure if you need to set Option 67 in a simple environment, so for testing sake, I suggest you remove it and put it back if later if you need a more complex environment. I just had a quick look at our DHCP server that we use with PXE booting all the time, and I don't see it set anywhere, only Option 66.


As per your update, your gateway IP address should point to the IP address of your router that connects the segments of your network together. It should be on the same network segment as the IP address that the NIC has been issued.

This is set with the Routers option in DHCP (Option 3 I think).

Mark Henderson
  • 68,823
  • 31
  • 180
  • 259
  • Thanks, I actually took down the windows firewall. That means I wouldn't need to open the ports correct? The weird thing is I tested it and when PXE booting from a machine in the same room as the server it works great, when leaving the room and going to another room thats across other switches is when i get the error – Peter Jan 06 '12 at 03:21
  • @Peter - is it also across subnets? – Mark Henderson Jan 06 '12 at 03:30
  • I would also suggest that this is the time to set up a SPAN/Mirror port on your switch and watch the network traffic with tcpdump/wireshark etc – Mark Henderson Jan 06 '12 at 10:26
  • Yes it is across subnets – Peter Jan 06 '12 at 22:26
  • @Peter - in that case, it's because part of PXE uses the subnet broadcast address, so the routers will need to be configured to pass it on. I'll do some research on it and update my answer. – Mark Henderson Jan 06 '12 at 22:56
  • Actually, never mind. Because you're using Option 66 and 67 the broadcoast forwarding isn't nessesary. Are both of the subnets using the same DHCP server? If not, maybe they're configured differently? – Mark Henderson Jan 06 '12 at 23:01
  • Hey i updated my question. I think one of my dhcp options is wrong because I realized its finding the wrong gateway. – Peter Jan 07 '12 at 00:52
  • @Peter - forgot to mention, I updated my answer after I saw your update. – Mark Henderson Jan 08 '12 at 20:32