Skip to main content

Posts

Showing posts with the label SunRay

PXE, SunRay, Beacen dhcpd.conf

I have my "play" network where I test out a bunch of stuff.  I have a satellite server for testing which handles the DHCP stuff for me.  I just broke that portion of my lab, but I needed to test out Tim Beatty's Beacen product using PXE, a SunRay station. This configuration would not likely be used in a production environment, but I wanted to document how you add "custom" dhcp options (in this case Option 194). PXE, SunRay, Beacen dhcpd.conf #deny unknown-clients; # BEGIN - SunRay stuff option space SunRay; option SunRay.AuthSrvr code 21 = ip-address; option SunRay.AuthSrvr 10.10.31.104; option SunRay.FWSrvr code 31 = ip-address; option SunRay.FWSrvr 10.10.31.104; option SunRay.NewTVer code 23 = text; option SunRay.NewTVer "3.0_51,REV=2004.11.10.16.18"; option SunRay.Intf code 33 = text; option SunRay.Intf "eth0"; option SunRay.LogHost code 24 = ip-address; option SunRay.LogHost 10.10.31.103; option SunRay.LogKern code 2...