<pre>This is my config file, so which IP adress should I give to my server ?<br><br>A guy send it to me, so tell me which thing that I need to change into values from my pc !<br><br>Grtz Jordy<br><br><br><br><br><br><br><br>
#<br># Sample configuration file for ISC dhcpd<br>#<br># Make changes to this file and copy it to /etc/dhcpd.conf.sample<br>#<br>allow booting;<br>allow bootp;<br>ddns-update-style            none;<br><br>default-lease-time           21600;
<br>max-lease-time               21600;<br><br>option subnet-mask           <a href="http://255.255.255.0">255.255.255.0</a>;<br>option broadcast-address     <a href="http://192.168.0.255">192.168.0.255</a>;<br>option routers               
<a href="http://192.168.0.1">192.168.0.1</a>;<br>option domain-name-servers   <a href="http://192.168.0.1">192.168.0.1</a>;<br>option domain-name           "<a href="http://server.be">server.be</a>";          # <--Fix this domain name
<br>next-server <a href="http://192.168.0.1">192.168.0.1</a>;<br>option root-path             "192.168.0.1:/opt/ltsp/i386";<br><br>option option-128 code 128 = string;<br>option option-129 code 129 = text;<br><br>
subnet <a href="http://192.168.0.0">192.168.0.0</a> netmask <a href="http://255.255.255.0">255.255.255.0</a> {<br>    use-host-decl-names      on;<br>    option log-servers       <a href="http://192.168.0.1">192.168.0.1</a>
;<br><br><br>##<br>## If you want to use static IP address for your workstations, then un-comment<br>## the following section and modify to suit your network.<br>## Then, duplicate this section for each workstation that needs a static
<br>## IP address.<br>##<br>    host ws001 {<br>        hardware ethernet    44:4D:50:E1:15:A6;<br>       fixed-address        <a href="http://192.168.0.2">192.168.0.2</a>;<br>       filename             "/lts/2.6.9-ltsp-3/pxelinux.0";
<br>    }<br><br>##<br>## If you want to use a dynamic pool of addresses, then un-comment the following<br>## lines and modify to match your network.<br>##<br>##    subnet  <a href="http://192.168.0.0">192.168.0.0</a> netmask 
<a href="http://255.255.255.0">255.255.255.0</a> {<br>##        range dynamic-bootp <a href="http://192.168.0.1">192.168.0.1</a> <a href="http://192.168.0.253">192.168.0.253</a>;<br>##    }<br>##<br><br>}<br><br>#<br># If you need to pass parameters on the kernel command line, you can
<br># do it with option-129.  In order for Etherboot to look at option-129,<br># you MUST have option-128 set to a specific value.  The value is a<br># special Etherboot signature of 'e4:45:74:68:00:00'.<br>#<br># Add these two lines to the host entry that needs kernel parameters
<br>#<br>#        option option-128     e4:45:74:68:00:00;       # NOT a mac address<br>#        option option-129     "NIC=ne IO=0x300";<br>#<br></pre>