1

I have both Windows and Apple computers on the same subnet. I have WDS running and I need to add an OS X Mavericks with NetInstall to deploy to Apple products. What configurations do I need to make to allow both systems to boot to their respective deployment systems?

DHCP is running on a Sonciwall TZ 210.

Sandy
  • 656
  • 4
  • 8
  • 21

1 Answers1

0

Assuming that simply enabling netboot on the mac server on your one subnet and doing nothing else isn't working (as this is often all you have to do...)

Setting netboot clients up on the same subnet as the netboot server in a 'mixed' network is in some ways trickier than setting them up on a routed network imho, as on a routed network you can just nominate the mac server as a DHCP helper on your router/layer 3 switch and this will make sure the netboot server will see the client requests.

This isn't really an issue with WDS being present on the same subnet. WDS uses some fairly simple PXE boot DHCP extensions but IIRC the apple systems are a bit more esoteric.

You may be able to point your clients to the netboot server with the following command in the terminal

sudo bless --netboot --server bsdp://ip.address.here
Rob Moir
  • 31,664
  • 6
  • 58
  • 86
  • I was worried they used the same protocol and which would conflict when trying to boot the clients. Thanks! – Sandy Jul 10 '14 at 20:15