| 7 | == Configuratie tftp/samba server == |
| 8 | |
| 9 | De tftp server en samba server in uw netwerk moet de volgende directorystructuur hebben: |
| 10 | |
| 11 | (voorbeeld op SYN-3 server) |
| 12 | |
| 13 | |
| 14 | {{{ |
| 15 | /home/shares/tftp/thin/bzImage |
| 16 | /home/shares/tftp/thin/image |
| 17 | /home/shares/tftp/thin/initrd.gz |
| 18 | /home/shares/tftp/thin/start |
| 19 | /home/shares/tftp/thin/xinitrc |
| 20 | /home/shares/tftp/pxelinux.0 |
| 21 | /home/shares/tftp/pxelinux.cfg |
| 22 | /home/shares/tftp/pxelinux.cfg/default |
| 23 | }}} |
| 24 | |
| 25 | De files in de 'thin' map vind u in de attachment op deze pagina. |
| 26 | |
| 27 | == Configuratie dhcp server == |
| 28 | |
| 29 | De dhcp server moet zorgen dat uw PXE netwerk kaart de pxelinux.0 inlaad. |
| 30 | |
| 31 | Voorbeeld configuratie voor ISC dhcpd op SYN-3 in /etc/dhcpd.conf: |
| 32 | {{{ |
| 33 | subnet 192.168.108.0 netmask 255.255.255.0 { |
| 34 | range dynamic-bootp 192.168.108.160 192.168.108.220; |
| 35 | option domain-name-servers 192.168.108.140,192.168.108.140; |
| 36 | option routers 192.168.108.254; |
| 37 | option domain-name "domain.local"; |
| 38 | next-server 192.168.108.254; |
| 39 | filename "pxelinux.0"; |
| 40 | } |
| 41 | |
| 42 | }}} |