dhcpd.conf

dettus

Bicycle User
ich versuche gerade meine neue sun ueber das netzwerk zu booten.
weil ich zu faul bin meine andere anzuschliessen, und ich deswegen die netboot-skripte nicht starten kann habe ich mich auf die suche begeben wie man das von openbsd aus hinkriegt.

dabei bin ich auf diese dhcpd.conf gestossen:
Code:
option space SUNW;
option SUNW.root-server-ip-address code 2 = ip-address;
option SUNW.root-server-hostname code 3 = text;
option SUNW.root-path-name code 4 = text;
option SUNW.install-server-ip-address code 10 = ip-address;
option SUNW.install-server-hostname code 11 = text;
option SUNW.install-path code 12 = text;

host foobar {
      hardware ethernet CC:CC:CC:CC:CC:CC;
      fixed-address 172.16.1.2;
      option host-name "foobar";
      option domain-name "example.org";
      next-server bork;
      filename "/inetboot";
      vendor-option-space SUNW;
      option SUNW.root-server-hostname "bork";
      option SUNW.root-server-ip-address 172.16.1.1;
      option SUNW.root-path-name "/mnt";
      option SUNW.install-server-hostname "bork";
      option SUNW.install-server-ip-address 172.16.1.1;
      option SUNW.install-path "/cdrom";
}

leider ist das eine fuer den freebsd-dhcpd.
weiss jemand wie ich diese option SUNW.xxx -sachen nach openbsd hin uebertragen kann?
 
Zurück
Oben