• [^] # Re: PXE-E38

    Posté par . En réponse au journal Techno Libre pour l'enseignement -> some kind of Black-magic ?. Évalué à 3.

    des bouts de dhcpd.conf
    subnet 10.0.0.0 netmask 255.255.255.0 {
    range 10.0.0.1 10.0.0.127;
    option broadcast-address 10.0.0.255;
    option routers 10.0.0.200;
    }

    host foobar {
    hardware ethernet DE:AD:F0:0D:BA:BE;
    fixed-address 10.0.0.1;
    filename "pxelinux.0";
    next-server 10.0.0.200;
    }

    la machine sur laquelle tourne le serveur tfpd est 10.0.0.200

    et sinon, la ligne dans le inetd.conf et avec le package tftpd-hpa (Debian & co.)
    tftp dgram udp wait root /usr/sbin/in.tftpd /usr/sbin/in.tftpd -s /tftpboot/

    et bien sûr, /tftpboot/ avec ce qu'il faut dedans

    ça me rappelle d'ailleurs que : http://www.fsugar.be/pmwiki.php?n=AutoInst.PXEUDPCASTDebian-(...) ;)